/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 3.02 MiB
#2 Wrong Answer 14ms 3.047 MiB
#3 Wrong Answer 17ms 3.02 MiB

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 and 1 in arr:
        count += (len(arr)-1)
    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 13:42:19
Judged At
2024-11-11 03:43:48
Judged By
Score
10
Total Time
17ms
Peak Memory
3.047 MiB