/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 3.133 MiB
#2 Wrong Answer 14ms 2.977 MiB
#3 Wrong Answer 14ms 3.02 MiB

Code

for i in range(int(input())):
  count=0
  Brick=0
  a,b,c,l=map(int,input().split())
  if l==0:
    count = (a * 1) + (b * 2) + (c * 3) + (l * 3)
    Brick = int(count / 9)
    print(f"Case {i + 1}: {Brick}")
  elif a==0 and l!=0:
    count = (b * 2)+(c * 3)
    Brick=int(count/9)
    print(f"Case {i + 1}: {Brick}")
  elif c==0 and b==0:
    count=(a*1)+(l*3)
    Brick=int(count/9)
    print(f"Case {i + 1}: {Brick}")
  elif l!=0 and a!=0:
    while a!=0 and b!=0 and c!=0 and l!=0:
      count+=9
      a-=1
      b-=1
      c-=1
      l-=1
    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:01:47
Judged At
2025-01-15 12:29:31
Judged By
Score
2
Total Time
14ms
Peak Memory
3.133 MiB