CSES - Leirikisa 9.12.2021 - Results
Submission details
Task:Urkupillit
Sender:Kirill_Akimov
Submission time:2021-12-09 13:49:39 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.07 s1details
#30.07 s1details
#40.07 s1details
#50.07 s1details
#60.07 s2details
#70.07 s2details
#80.07 s2details
#90.07 s2details
#100.07 s2details
#110.07 s3details
#120.07 s3details
#130.07 s3details
#140.07 s3details
#150.07 s3details

Code

n = int(input())

a = [int(e) for e in input().split()]

mod = [0, 0, 0]
for e in a:
    mod[e % 3] += 1
    
count = mod[0]

m = (mod[1] + mod[2]*2)%3
if m == 0:
    count = count + (mod[1] + mod[2])
if m == 1:
    count = count + (mod[1] + mod[2] - 1)
if m == 2:
    if mod[2]>0:
        count = count + (mod[1] + mod[2] - 1)
    else:
        count = count + (mod[1] + mod[2] - 2)



print(count)

Test details

Test 1

Group: 1

Verdict:

input
5 0

correct output
1 2 3 4 5 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 2

Group: 1

Verdict:

input
5 10

correct output
5 4 3 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 3

Group: 1

Verdict:

input
5 3

correct output
4 1 2 3 5 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 4

Group: 1

Verdict:

input
5 1

correct output
2 1 3 4 5 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 5

Group: 1

Verdict:

input
5 2

correct output
3 1 2 4 5 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 6

Group: 2

Verdict:

input
100 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 7

Group: 2

Verdict:

input
100 4950

correct output
100 99 98 97 96 95 94 93 92 91...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 8

Group: 2

Verdict:

input
100 2279

correct output
100 99 98 97 96 95 94 93 92 91...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 9

Group: 2

Verdict:

input
100 2528

correct output
100 99 98 97 96 95 94 93 92 91...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 10

Group: 2

Verdict:

input
100 4483

correct output
100 99 98 97 96 95 94 93 92 91...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 11

Group: 3

Verdict:

input
100000 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 12

Group: 3

Verdict:

input
100000 4999950000

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 13

Group: 3

Verdict:

input
100000 2969035543

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 14

Group: 3

Verdict:

input
100000 2495939870

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...

Test 15

Group: 3

Verdict:

input
100000 1279770330

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    n = int...