CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:Uolevi
Submission time:2017-10-10 22:33:37 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.12 s1details
#20.14 s2details
#30.12 s3details

Code

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

    luku = inputti-sum(array[:kohta-1])
    lukuYlä = math.ceil(luku/kohta) - 1
    lukuYlä += int(10**(kohta-1))
    string = inputti%(kohta) - (kohta-2)
    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
180.0 2
2700.0 3
36000.0 4
450000.0 5
5400000.0 6
...
Truncated

Error:
Traceback (most recent call last):
  File "input/code.py", line 22, in <module>
    vastau...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
180.0 2
2700.0 3
36000.0 4
450000.0 5
5400000.0 6
...
Truncated

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
180.0 2
2700.0 3
36000.0 4
450000.0 5
5400000.0 6
...
Truncated