/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Runtime Error Traceback (most recent call last): File "foo.py", line 3, in <module> ValueError: invalid literal for int() with base 10: '4 16 0 0' 15ms 3.125 MiB
#2 Runtime Error Traceback (most recent call last): File "foo.py", line 3, in <module> ValueError: invalid literal for int() with base 10: '25 5 0 4' 15ms 3.023 MiB

Code

t = int(input())
if 1 <= t <= 10:
    for i in range(int(input())):
        count = 0
        Brick = 0
        a, b, c, d = map(int, input().split())
        if 0 <= a and b and c and d <= 40:
            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:51:18
Judged At
2024-11-11 03:43:38
Judged By
Score
0
Total Time
15ms
Peak Memory
3.125 MiB