Runtime Error
Code
for _ in range(int(input())):
n = int(input())
l = list(map(int, input().split()))
summ = sum(l)
if sum(l)%3 == 0:
print(n)
else:
rem = summ%3
if rem == 1:
if 1 in l:
l.remove(1)
print(n - 1)
elif 2 in l:
l.remove(2)
print(n - 1)
else:
print(0)
elif rem == 2:
if 2 in l:
l.remove(2)
print(n - 1)
elif 1 in l:
l.remove(1)
print(n - 1)
else:
print(0)
Information
- Submit By
- Type
- Submission
- Problem
- P1011 LCD
- Contest
- Brain booster - 1
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2023-12-31 15:23:06
- Judged At
- 2024-11-11 03:45:45
- Judged By
- Score
- 0
- Total Time
- 20ms
- Peak Memory
- 3.094 MiB