Wrong Answer
Code
for _ in range(int(input())):
n = int(input())
arr = list(map(int, input().split()))
count = 0
for i in arr:
if i%3 == 0:
count += 1
arr.remove(i)
if sum(arr)%3 == 0:
count += len(arr)
elif sum(arr)%3 == 1:
if 1 in arr:
count += (len(arr)-1)
else:
count += 0
elif sum(arr)%3==2:
if 2 in arr:
count += (len(arr)-1)
elif arr.count(1)>=2:
count += (len(arr)-2)
print(count)
Information
- Submit By
- Type
- Submission
- Problem
- P1013 Divisible by 3
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2024-01-06 16:14:25
- Judged At
- 2024-11-11 03:43:47
- Judged By
- Score
- 10
- Total Time
- 16ms
- Peak Memory
- 3.086 MiB