/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Runtime Error Traceback (most recent call last): File "foo.py", line 2, in <module> ValueError: invalid literal for int() with base 10: '4 8\r' 14ms 3.062 MiB
#2 Runtime Error Traceback (most recent call last): File "foo.py", line 2, in <module> ValueError: invalid literal for int() with base 10: '997 994009\r' 14ms 3.02 MiB
#3 Runtime Error Traceback (most recent call last): File "foo.py", line 2, in <module> ValueError: invalid literal for int() with base 10: '999983 1000000\r' 14ms 2.945 MiB

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-10-03 14:05:29
Judged By
Score
0
Total Time
14ms
Peak Memory
3.062 MiB