/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 3.02 MiB
#2 Wrong Answer 14ms 3.02 MiB
#3 Accepted 14ms 3.066 MiB
#4 Wrong Answer 15ms 3.004 MiB

Code

for i in range(int(input())):
  count=0
  Brick=0
  a,b,c,d=map(int,input().split())
  if a==0 and d!=0:
    count = (b * 2) + (c * 3)
    Brick = int(count / 9)
    print(f"Case {i + 1}: {Brick}")
  else:
    count += (a * 1) + (b * 2) + (c * 3) + (d * 3)
    Brick += int(count / 9)
    print(f"Case {i + 1}: {Brick}")

Information

Submit By
Type
Submission
Problem
P1014 FIFA World Cup 2022 Again!
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 13:07:12
Judged At
2024-11-11 03:43:39
Judged By
Score
2
Total Time
15ms
Peak Memory
3.066 MiB