CSES - Datatähti 2022 alku - Results
Submission details
Task:Spiraali
Sender:Ebin :D
Submission time:2021-10-15 08:30:52 +0300
Language:CPython3
Status:READY
Result:15
Feedback
groupverdictscore
#1ACCEPTED15
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.02 s1details
#20.02 s2details
#30.02 s3details

Code

list = [[1,36,35,34,33,32,31,30,29,28],
        [2,37,64,63,62,61,60,59,58,27],
        [3,38,65,84,83,82,81,80,57,26],
        [4,39,66,85,96,95,94,79,56,25],
        [5,40,67,86,97,100,93,78,55,24],
        [6,41,68,87,98,99,92,77,54,23],
        [7,42,69,88,89,90,91,76,53,22],
        [8,43,70,71,72,73,74,75,52,21],
        [9,44,45,46,47,48,49,50,51,20],
        [10,11,12,13,14,15,16,17,18,19]]

n,t = [int(x) for x in input().split()]
list2 = []
for i in range(t):
        a, b = [int(x) for x in input().split()]
        x = list[a-1]
        y = x[b-1]
        list2.append(y)

for i in list2:
        print(i)

Test details

Test 1

Group: 1

Verdict: ACCEPTED

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

correct output
1
36
35
34
33
...

user output
1
36
35
34
33
...

Test 2

Group: 2

Verdict:

input
1000 1000
371 263
915 322
946 880
53 738
...

correct output
773533
312166
206053
200080
593922
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 16, in <module>
    x = list[a-1]
IndexError: list index out of range

Test 3

Group: 3

Verdict:

input
1000000000 1000
177757853 827347032
409613589 419171337
739269360 256524697
328695530 896842209
...

correct output
571375684522141210
967321186816598569
762879105851175000
370065046779516790
936897883750373771
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 16, in <module>
    x = list[a-1]
IndexError: list index out of range