/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 2.902 MiB
#2 Wrong Answer 14ms 3.129 MiB
#3 Wrong Answer 15ms 3.102 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 l!=0:
      if b!=0 and c!=0:
        count += 9
        a -= 1
        b -= 1
        c -= 1
        l -= 1
      else:
        count += (a * 1) + (b * 2) + (c * 3) + (l * 3)
        Brick = int(count / 9)
        a-=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:20:27
Judged At
2024-11-11 03:43:39
Judged By
Score
1
Total Time
15ms
Peak Memory
3.129 MiB