/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 15ms 2.883 MiB
#2 Wrong Answer 14ms 3.082 MiB
#3 Wrong Answer 14ms 3.125 MiB

Code

def result(a,b,c,l):
  count=0
  Brick=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}")


for i in range(int(input())):
  count=0
  Brick=0
  a,b,c,l=map(int,input().split())
  if a!=0 and l!=0:
    result(a,b,c,l)
  else:
    count = (a * 1) + (b * 2) + (c * 3) + (l * 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:41:19
Judged At
2024-11-11 03:43:39
Judged By
Score
1
Total Time
15ms
Peak Memory
3.125 MiB