Submission details
Task:Particle accelerator
Sender:aalto26cm_029
Submission time:2026-09-14 17:48:17 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#1ACCEPTED0.04 sdetails
#2ACCEPTED0.04 sdetails
#3ACCEPTED0.04 sdetails
#4ACCEPTED0.04 sdetails
#5ACCEPTED0.04 sdetails
#6ACCEPTED0.04 sdetails
#7ACCEPTED0.04 sdetails
#80.06 sdetails
#90.06 sdetails
#100.04 sdetails
#110.04 sdetails
#120.06 sdetails
#13ACCEPTED0.04 sdetails
#140.06 sdetails
#150.04 sdetails
#160.06 sdetails
#170.06 sdetails
#180.06 sdetails
#190.06 sdetails
#20ACCEPTED0.04 sdetails
#210.06 sdetails
#220.06 sdetails
#230.06 sdetails
#240.06 sdetails
#250.07 sdetails
#260.06 sdetails
#270.06 sdetails
#280.06 sdetails
#290.06 sdetails
#300.06 sdetails
#310.06 sdetails
#320.06 sdetails
#330.06 sdetails
#340.06 sdetails
#350.06 sdetails
#360.06 sdetails
#370.06 sdetails
#380.06 sdetails
#390.06 sdetails
#400.06 sdetails
#410.06 sdetails
#420.07 sdetails
#430.06 sdetails
#440.06 sdetails
#450.06 sdetails
#460.06 sdetails
#470.06 sdetails
#480.07 sdetails
#490.06 sdetails
#500.07 sdetails
#510.06 sdetails
#520.06 sdetails
#530.06 sdetails
#540.06 sdetails
#550.06 sdetails
#560.06 sdetails
#570.06 sdetails
#580.06 sdetails
#590.06 sdetails
#600.06 sdetails
#610.06 sdetails
#620.06 sdetails
#630.07 sdetails
#640.07 sdetails
#650.06 sdetails
#660.07 sdetails
#670.07 sdetails
#680.06 sdetails
#690.07 sdetails
#700.06 sdetails
#710.06 sdetails
#720.07 sdetails
#730.07 sdetails
#740.07 sdetails
#750.07 sdetails
#760.07 sdetails
#770.07 sdetails
#780.07 sdetails
#790.07 sdetails
#800.07 sdetails
#810.07 sdetails
#820.07 sdetails
#830.07 sdetails
#840.07 sdetails
#850.07 sdetails
#860.07 sdetails
#870.07 sdetails
#880.07 sdetails
#890.07 sdetails
#900.07 sdetails
#910.07 sdetails

Code

import sys 
input_d = sys.stdin.read().split()
n = int(input_d[0])
mass = [int(i) for i in input_d[1:]]


def collide(a,b):
    ma = mass[a]
    mb = mass[b]
    return ma*mb - (min(ma,mb))**2

if n== 1:
    print(0)
    exit()


dic = {}
dp = {}
total_cost = 0
#NO NEED FOR WRAPPING !!
for c in range(n-1):
    for k in range(len(mass)):
        if k ==0:
            right_collision= dic[(mass[0],mass[1])] if dic.get((mass[0],mass[1]),None) is not None else collide(0,1)
            dic[mass[0],mass[1]] = right_collision
            dp[k] = (right_collision,1)
        elif k ==len(mass)-1:
            #if last ele,emnt
            left_collision= dic[(mass[k],mass[k-1])] if dic.get((mass[k],mass[k-1]),None) is not None else collide(k,k-1)
            dic[(mass[k],mass[k-1])] = (left_collision,k-1) #to remove or adapt
            dp[k] = (left_collision,1)
        else :
            left_collision = dic[(mass[k],mass[k-1])] if dic.get(((mass[k],mass[k-1])),None) is not None else collide(k,k-1)
            right_collision= dic[(mass[k],mass[k+1])] if dic.get(((mass[k],mass[k+1])),None)  is not None else collide(k,k+1)
            if left_collision<right_collision:
                dp[k] = (left_collision,k-1)
            else:
                dp[k]= (right_collision,k+1)
    tomerge = min(dp,key=lambda x:dp[x][0])
    total_cost+=dp.get(tomerge)[0]
    tomergewith = dp.get(tomerge)[1]
    mass[tomerge] = mass[tomerge]+ mass[tomergewith]
    mass.pop(tomergewith)
    dp={}


    #now we have dp[i] = (mincosttomerge,index to merge with)
            

print(total_cost)

    




Test details

Test 1

Verdict: ACCEPTED

input
1
373 

correct output
0

user output
0

Test 2

Verdict: ACCEPTED

input
1
10 

correct output
0

user output
0

Test 3

Verdict: ACCEPTED

input
2
1 7 

correct output
6

user output
6

Test 4

Verdict: ACCEPTED

input
2
798 810 

correct output
9576

user output
9576

Test 5

Verdict: ACCEPTED

input
3
2 7 9 

correct output
10

user output
10

Test 6

Verdict: ACCEPTED

input
3
43371 770816 582162 

correct output
166626155145

user output
166626155145

Test 7

Verdict: ACCEPTED

input
3
255995 678296 258159 

correct output
282656505483

user output
282656505483

Test 8

Verdict:

input
4
2 4 5 10 

correct output
19

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 9

Verdict:

input
4
10 1 10 5 

correct output
78

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 10

Verdict:

input
4
4 10 10 8 

correct output
96

user output
192

Test 11

Verdict:

input
4
635350 99359 612245 308607 

correct output
283721279422

user output
419848971603

Test 12

Verdict:

input
5
8 9 7 9 6 

correct output
167

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 13

Verdict: ACCEPTED

input
5
8 10 1 2 4 

correct output
97

user output
97

Test 14

Verdict:

input
5
25933 931751 549787 947945 435...

correct output
642593396167

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 15

Verdict:

input
5
709 840 291 122 511 

correct output
731471

user output
879647

Test 16

Verdict:

input
5
6 2 10 9 8 

correct output
49

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 17

Verdict:

input
5
870929 831516 206766 363819 91...

correct output
581247680937

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 18

Verdict:

input
5
4 3 9 1 1 

correct output
45

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 19

Verdict:

input
5
780095 319045 438508 978444 72...

correct output
492410128596

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 20

Verdict: ACCEPTED

input
5
969 240 870 378 531 

correct output
955854

user output
955854

Test 21

Verdict:

input
5
501988 499243 495885 7545 1338...

correct output
284384673000

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 22

Verdict:

input
10
8 9 7 9 6 9 5 7 7 4 

correct output
347

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 23

Verdict:

input
10
8 10 1 2 4 10 2 3 1 4 

correct output
194

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 24

Verdict:

input
10
25933 931751 549787 947945 435...

correct output
1909421677160

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 25

Verdict:

input
10
709 840 291 122 511 570 893 43...

correct output
2139925

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 26

Verdict:

input
10
6 2 10 9 8 7 7 6 3 2 

correct output
339

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 27

Verdict:

input
10
870929 831516 206766 363819 91...

correct output
2999634317613

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 28

Verdict:

input
10
4 3 9 1 1 4 2 10 6 1 

correct output
194

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 29

Verdict:

input
10
780095 319045 438508 978444 72...

correct output
3083316036349

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 30

Verdict:

input
10
969 240 870 378 531 817 233 42...

correct output
1139241

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 31

Verdict:

input
10
501988 499243 495885 7545 1338...

correct output
554211450134

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 32

Verdict:

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

correct output
6396

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 33

Verdict:

input
100
8 10 1 2 4 10 2 3 1 4 2 4 4 7 ...

correct output
3542

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 34

Verdict:

input
100
25933 931751 549787 947945 435...

correct output
45440863225859

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 35

Verdict:

input
100
709 840 291 122 511 570 893 43...

correct output
45958697

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 36

Verdict:

input
100
6 2 10 9 8 7 7 6 3 2 10 3 1 7 ...

correct output
3828

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 37

Verdict:

input
100
870929 831516 206766 363819 91...

correct output
38360827705542

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 38

Verdict:

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

correct output
5967

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 39

Verdict:

input
100
780095 319045 438508 978444 72...

correct output
42394120248428

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 40

Verdict:

input
100
969 240 870 378 531 817 233 42...

correct output
43869305

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 41

Verdict:

input
100
501988 499243 495885 7545 1338...

correct output
51929619520205

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 42

Verdict:

input
200
21 495 634 444 749 832 499 584...

correct output
94150203

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 43

Verdict:

input
200
19480 664871 463323 194160 725...

correct output
109172696765966

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 44

Verdict:

input
200
740217 873584 263375 86454 533...

correct output
91609970771011

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 45

Verdict:

input
200
3 9 9 9 10 2 10 8 5 8 7 7 8 8 ...

correct output
12594

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 46

Verdict:

input
200
8 7 9 4 1 2 4 3 10 3 6 4 4 4 6...

correct output
11434

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 47

Verdict:

input
200
2 6 1 2 4 9 3 10 6 1 4 9 4 8 2...

correct output
10973

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 48

Verdict:

input
200
523282 55700 550826 308687 456...

correct output
92752119769026

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 49

Verdict:

input
200
530707 844425 191564 889066 67...

correct output
99915887908116

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 50

Verdict:

input
200
506 433 879 245 182 909 853 20...

correct output
100894725

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 51

Verdict:

input
200
761422 412836 246994 715471 13...

correct output
91724968917854

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 52

Verdict:

input
200
9 10 9 10 9 7 1 7 7 10 4 7 6 1...

correct output
9260

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 53

Verdict:

input
200
3 7 8 1 1 10 3 7 1 2 4 9 7 4 4...

correct output
13944

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 54

Verdict:

input
200
5 8 5 7 9 8 2 9 4 9 3 3 7 1 3 ...

correct output
15692

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 55

Verdict:

input
200
10 2 8 8 3 6 3 5 7 2 2 1 4 3 7...

correct output
12255

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 56

Verdict:

input
200
700 53 1000 318 221 984 362 51...

correct output
126087673

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 57

Verdict:

input
200
6 5 3 1 2 2 5 2 2 3 7 7 5 2 6 ...

correct output
11199

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 58

Verdict:

input
200
6 3 8 6 8 1 9 2 2 3 3 8 5 9 8 ...

correct output
13071

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 59

Verdict:

input
200
814768 915127 735563 468064 86...

correct output
98792356012408

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 60

Verdict:

input
200
562 289 125 165 398 398 782 31...

correct output
94162582

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 61

Verdict:

input
200
3 4 1 10 8 5 5 4 6 4 8 9 9 9 8...

correct output
11090

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 62

Verdict:

input
200
4 3 7 5 2 7 10 8 4 7 10 10 3 7...

correct output
11655

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 63

Verdict:

input
200
958322 322406 770487 611574 98...

correct output
81490639470393

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 64

Verdict:

input
200
373 422 556 331 956 754 737 73...

correct output
88581726

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 65

Verdict:

input
200
5 7 5 10 3 2 9 8 2 7 1 9 10 9 ...

correct output
13948

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 66

Verdict:

input
200
780277 423471 92725 418110 633...

correct output
136105358146422

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 67

Verdict:

input
200
308420 676676 231540 246163 27...

correct output
104365913260031

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 68

Verdict:

input
200
602 717 953 825 144 864 808 92...

correct output
82761699

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 69

Verdict:

input
200
465 525 193 757 582 310 621 85...

correct output
101145827

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 70

Verdict:

input
200
9 10 10 9 8 5 7 10 7 6 3 2 4 2...

correct output
9822

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 71

Verdict:

input
200
798 810 821 367 123 829 603 60...

correct output
111853493

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 72

Verdict:

input
500
21 495 634 444 749 832 499 584...

correct output
320652082

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 73

Verdict:

input
500
19480 664871 463323 194160 725...

correct output
255800779186420

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 74

Verdict:

input
500
740217 873584 263375 86454 533...

correct output
282774432682654

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 75

Verdict:

input
500
3 9 9 9 10 2 10 8 5 8 7 7 8 8 ...

correct output
30727

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 76

Verdict:

input
500
8 7 9 4 1 2 4 3 10 3 6 4 4 4 6...

correct output
28929

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 77

Verdict:

input
500
2 6 1 2 4 9 3 10 6 1 4 9 4 8 2...

correct output
39800

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 78

Verdict:

input
500
523282 55700 550826 308687 456...

correct output
367458083034844

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 79

Verdict:

input
500
530707 844425 191564 889066 67...

correct output
276567810216590

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 80

Verdict:

input
500
506 433 879 245 182 909 853 20...

correct output
357098617

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 81

Verdict:

input
500
761422 412836 246994 715471 13...

correct output
345118298392748

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 82

Verdict:

input
500
9 10 9 10 9 7 1 7 7 10 4 7 6 1...

correct output
37385

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 83

Verdict:

input
500
3 7 8 1 1 10 3 7 1 2 4 9 7 4 4...

correct output
45054

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 84

Verdict:

input
500
5 8 5 7 9 8 2 9 4 9 3 3 7 1 3 ...

correct output
48480

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 85

Verdict:

input
500
10 2 8 8 3 6 3 5 7 2 2 1 4 3 7...

correct output
35867

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 86

Verdict:

input
500
700 53 1000 318 221 984 362 51...

correct output
344007358

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 87

Verdict:

input
500
6 5 3 1 2 2 5 2 2 3 7 7 5 2 6 ...

correct output
32937

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'

Test 88

Verdict:

input
500
6 3 8 6 8 1 9 2 2 3 3 8 5 9 8 ...

correct output
33083

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 89

Verdict:

input
500
814768 915127 735563 468064 86...

correct output
352570895811941

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 90

Verdict:

input
500
562 289 125 165 398 398 782 31...

correct output
349500395

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 39, in <module>
    tomerge = min(dp,key=lambda x:dp[x][0])
TypeError: '<' not supported between instances of 'tuple' and 'int'

Test 91

Verdict:

input
500
3 4 1 10 8 5 5 4 6 4 8 9 9 9 8...

correct output
35153

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 35, in <module>
    if left_collision<right_collision:
TypeError: '<' not supported between instances of 'int' and 'tuple'