Submission details
Task:Card game
Sender:aalto26ch_027
Submission time:2026-09-12 15:24:56 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.06 sdetails
#20.06 sdetails
#30.06 sdetails
#40.06 sdetails
#50.06 sdetails
#60.06 sdetails
#70.06 sdetails
#80.06 sdetails
#90.06 sdetails
#100.06 sdetails
#110.06 sdetails
#120.06 sdetails
#130.06 sdetails
#140.06 sdetails
#150.06 sdetails

Code

import sys 
import numpy as np

def solve():
    input = sys.stdin.read().split()
    n = int(input[0])
    cards = []
    i = 1
    for _ in range(n) : 
        cards.append(int(input[i]))
        i +=1


    if n <3 : 
        return 0 
    res = [0] *(n+1)
    for i in range(3,n+1):
        pass_score = res[i-1]
        use_score = res[i-3]+ cards[i-2]
        res[i] = max(pass_score,use_score)
    return res[n]

if __name__ == '__main__' : 
    print(solve())

Test details

Test 1

Verdict:

input
5
9 4 1 6 6

correct output
6

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 2

Verdict:

input
6
5 6 2 4 10 1

correct output
16

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 3

Verdict:

input
10
8 9 10 2 7 1 10 10 1 4

correct output
26

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 4

Verdict:

input
100
1 8 8 5 7 10 9 4 8 10 6 3 8 7 ...

correct output
243

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 5

Verdict:

input
1000
10 7 5 6 5 2 5 3 2 2 1 6 8 7 8...

correct output
2230

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 6

Verdict:

input
10000
9 1 8 2 6 5 1 3 3 10 6 3 9 3 1...

correct output
22363

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 7

Verdict:

input
100000
5 5 4 6 8 7 9 6 3 2 5 8 7 3 5 ...

correct output
226636

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 8

Verdict:

input
1000000
5 8 5 7 9 1 9 10 3 6 1 8 3 9 7...

correct output
2259395

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 9

Verdict:

input
1000000
4 5 3 5 4 3 6 7 10 6 3 9 7 9 1...

correct output
2260761

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 10

Verdict:

input
1000000
10 3 6 7 7 10 4 4 5 2 9 4 6 10...

correct output
2260407

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 11

Verdict:

input
3
87 3 123

correct output
3

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 12

Verdict:

input
2
175 95

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 13

Verdict:

input
1
42

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 14

Verdict:

input
1000000
1000 1000 1000 1000 1000 1000 ...

correct output
333333000

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

Test 15

Verdict:

input
1000000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
333333

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 2, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'