Task: | Mastot |
Sender: | ph |
Submission time: | 2019-10-02 10:21:00 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#2 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#3 | RUNTIME ERROR | 0.02 s | 1, 2, 3 | details |
#4 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#5 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#6 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#7 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#8 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#9 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
#10 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#11 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#12 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#13 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#14 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#15 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#16 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#17 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#18 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#19 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#20 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#21 | WRONG ANSWER | 0.04 s | 2, 3 | details |
#22 | ACCEPTED | 0.03 s | 2, 3 | details |
#23 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#24 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#25 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#26 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#27 | WRONG ANSWER | 0.04 s | 2, 3 | details |
#28 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#29 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#30 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#31 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#32 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#33 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#34 | WRONG ANSWER | 0.52 s | 3 | details |
#35 | ACCEPTED | 0.19 s | 3 | details |
#36 | WRONG ANSWER | 0.28 s | 3 | details |
#37 | WRONG ANSWER | 0.23 s | 3 | details |
#38 | WRONG ANSWER | 0.26 s | 3 | details |
#39 | WRONG ANSWER | 0.32 s | 3 | details |
#40 | WRONG ANSWER | 0.46 s | 3 | details |
#41 | WRONG ANSWER | 0.25 s | 3 | details |
#42 | WRONG ANSWER | 0.24 s | 3 | details |
#43 | WRONG ANSWER | 0.24 s | 3 | details |
#44 | WRONG ANSWER | 0.24 s | 3 | details |
#45 | WRONG ANSWER | 0.25 s | 3 | details |
#46 | WRONG ANSWER | 0.25 s | 3 | details |
Code
n = int(input()) d = [int(x) for x in input().split()] c = [int(x) for x in input().split()] dc = [] ds = 0 co = 0 st = d.pop(0) for i in range(n-1): dc.append(d[i]/c[i]) ni = 0 oi = -1 while ds < n and ds + d[ni] < n: t = 0 if ds == 0: for i in range(st): if dc[i] == t: ni = i if d[i] > d[ni] else ni t = dc[ni] elif dc[i] > t: ni = i t = dc[i] co += c[ni] else: oi = ni for i in range(ni+1,ni+d[ni]+1): if dc[i] == t: ni = i if d[i] > d[ni] else ni t = dc[ni] elif dc[i] > t: ni = i t = dc[i] co += c[ni] print(ni) ds += (ni+1)-(oi+1) print(co)
Test details
Test 1
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
6 2 2 3 1 2 4 4 1 3 4 2 |
correct output |
---|
3 |
user output |
---|
1 4 3 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2 1 1 1 |
correct output |
---|
1 |
user output |
---|
0 1 |
Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
2 2 1 1 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 18, in <module> if dc[...
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
3 2 2 1 1 2 |
correct output |
---|
1 |
user output |
---|
0 1 |
Test 5
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
3 2 2 1 2 1 |
correct output |
---|
1 |
user output |
---|
0 2 |
Test 6
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
4 1 1 1 1 1000000000 1000000000 10000000... |
correct output |
---|
3000000000 |
user output |
---|
0 1 2 3000000000 |
Test 7
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
19000000000 |
user output |
---|
0 1 2 3 4 ... |
Test 8
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 1 1 2 1 1 1 2 1 1 2 1 1 1 2 1 ... |
correct output |
---|
4609157377 |
user output |
---|
0 1 2 3 4 ... |
Test 9
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
20 20 20 20 20 20 20 20 20 20 20 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 10
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
19 16 10 9 17 1 16 19 4 18 13 5 3... |
correct output |
---|
8424700 |
user output |
---|
5 8424700 |
Test 11
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 2 4 3 4 4 4 4 1 1 3 4 2 1 3 3 ... |
correct output |
---|
2817777553 |
user output |
---|
1 3 5 8 9 ... |
Test 12
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 4 4 4 4 3 4 1 3 4 1 1 4 1 3 1 ... |
correct output |
---|
3020673750 |
user output |
---|
0 1 4 7 10 ... |
Test 13
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 5 1 3 4 2 4 2 2 5 1 3 3 2 4 1 ... |
correct output |
---|
2064735712 |
user output |
---|
4 7 10 12 16 ... |
Test 14
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 8 1 2 6 8 6 9 1 4 9 9 8 6 3 3 ... |
correct output |
---|
378551508 |
user output |
---|
3 10 15 378551508 |
Test 15
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 5 2 8 9 4 10 1 8 9 9 8 1 7 8 9... |
correct output |
---|
457149308 |
user output |
---|
1 7 14 15 16 ... |
Test 16
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 7 6 2 6 1 3 10 4 6 3 5 2 2 10 ... |
correct output |
---|
471575451 |
user output |
---|
5 12 510969169 |
Test 17
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 6 2 2 3 8 7 2 10 8 9 6 3 10 5 ... |
correct output |
---|
620685913 |
user output |
---|
5 6 13 620685913 |
Test 18
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 4 5 3 8 2 8 5 9 6 3 7 5 1 6 9 ... |
correct output |
---|
1132427688 |
user output |
---|
0 2 9 10 15 ... |
Test 19
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 15 9 7 18 3 20 19 20 17 16 16 ... |
correct output |
---|
333300698 |
user output |
---|
4 342154223 |
Test 20
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 19 18 17 16 15 14 13 12 11 10 ... |
correct output |
---|
660514815 |
user output |
---|
9 12 14 15 16 ... |
Test 21
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
4999000000000 |
user output |
---|
0 1 2 3 4 ... Truncated |
Test 22
Group: 2, 3
Verdict: ACCEPTED
input |
---|
5000 5000 5000 5000 5000 5000 5000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 23
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 4999 4998 4997 4996 4995 4994 ... |
correct output |
---|
576616581 |
user output |
---|
607 962 976 4701 4781 ... |
Test 24
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 3343 3711 2568 137 2621 3850 4... |
correct output |
---|
671570 |
user output |
---|
1539 2484 3194 1170604 |
Test 25
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 119 203 420 133 175 334 461 10... |
correct output |
---|
85700253 |
user output |
---|
104 358 595 924 973 ... Truncated |
Test 26
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 8 6 2 1 4 5 7 3 4 2 1 10 3 6 6... |
correct output |
---|
193210576015 |
user output |
---|
5 10 16 17 18 ... Truncated |
Test 27
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1 2 1 2 2 1 2 2 1 1 1 2 1 2 2 ... |
correct output |
---|
1576581428593 |
user output |
---|
0 1 2 3 5 ... Truncated |
Test 28
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 300 1937 2136 770 429 2388 197... |
correct output |
---|
3584707 |
user output |
---|
83 979 1796 3021 3584707 |
Test 29
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 949 46 29 2237 2413 36 42 1162... |
correct output |
---|
3210354 |
user output |
---|
2 1629 3393 3210354 |
Test 30
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1557 1727 1787 360 1698 2423 1... |
correct output |
---|
3177107 |
user output |
---|
1116 1625 4041 3177107 |
Test 31
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 484 1991 2309 1326 1901 2426 8... |
correct output |
---|
4863018 |
user output |
---|
202 1623 2407 3142 5382045 |
Test 32
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1833 459 1994 2050 272 31 708 ... |
correct output |
---|
2876923 |
user output |
---|
1275 1872 3191 3266 2877756 |
Test 33
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
4999 530 2248 1916 859 2394 1403 24... |
correct output |
---|
5194452 |
user output |
---|
306 551 1787 1988 3856 ... |
Test 34
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
199999000000000 |
user output |
---|
0 1 2 3 4 ... Truncated |
Test 35
Group: 3
Verdict: ACCEPTED
input |
---|
200000 200000 200000 200000 200000 20... |
correct output |
---|
0 |
user output |
---|
0 |
Test 36
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 199999 199998 199997 199996 19... |
correct output |
---|
819945000 |
user output |
---|
106350 108449 147877 160790 181159 ... Truncated |
Test 37
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 9036 179861 197509 187949 9444... |
correct output |
---|
59563 |
user output |
---|
6697 21699 27056 60310 |
Test 38
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 357 1516 141 399 860 1591 544 ... |
correct output |
---|
247414000 |
user output |
---|
224 496 2170 3219 4317 ... Truncated |
Test 39
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 10 4 1 7 1 8 8 4 8 2 2 4 2 4 8... |
correct output |
---|
7789595210075 |
user output |
---|
4 9 10 13 20 ... Truncated |
Test 40
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 1 2 1 1 1 1 2 1 2 2 1 2 2 2 2 ... |
correct output |
---|
62777824801872 |
user output |
---|
0 1 2 3 4 ... Truncated |
Test 41
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 9473 42975 69773 60909 9354 20... |
correct output |
---|
76814 |
user output |
---|
6658 19280 54845 101686 165559 ... |
Test 42
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 31087 18493 14158 65333 95850 ... |
correct output |
---|
180614 |
user output |
---|
23813 70368 107883 141516 176580 ... |
Test 43
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 66563 17340 2293 5101 35636 96... |
correct output |
---|
56642 |
user output |
---|
49641 57677 80723 151498 103761 |
Test 44
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 4005 35201 22254 56956 49098 7... |
correct output |
---|
287201 |
user output |
---|
400 5528 27574 99014 146469 ... |
Test 45
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 99266 91407 53419 70750 93505 ... |
correct output |
---|
54045 |
user output |
---|
7561 31890 65115 129000 136126 ... |
Test 46
Group: 3
Verdict: WRONG ANSWER
input |
---|
199999 23098 95019 27998 22880 40713 ... |
correct output |
---|
184595 |
user output |
---|
19123 33758 76266 79202 98824 ... |