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