CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:Uolevi
Submission time:2017-10-04 16:01:23 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.10 s2details
#30.11 s3details

Code

import math
k = int(input(""))
vastaus = []
for q in range(k):
    inputti = int(input(""))
    array = [9,89]
    modArray = []
    for i in range(2,18):
        array.append((array[i-1]*10+9)*i)
    for i in range(18,0,-1):
        if inputti > sum(array[:i]):
            kohta = i+1
            break
    for i in range(0,18):
        modArray.append(array[i]%(i+2))
    luku = inputti-sum(array[:kohta-1])
    lukuYlä = math.ceil(luku/kohta)
    lukuYlä += sum(array[:kohta-1])
    string = (luku+sum(modArray[:kohta-1]))%(kohta)
    vastaus.append(str(lukuYlä)[string])
for i in vastaus:
    print(i)

Test details

Test 1

Group: 1

Verdict:

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 21, in <module>
    vastaus.append(str(lukuYl\xe4)[string])
IndexError: string index out of range

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
8
2
1
0
2
...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
7
6
3
6
1
...