CSES - Datatähti 2017 alku - Results
Submission details
Task:Bittijono
Sender:Pösö
Submission time:2016-10-04 14:13:42 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.62 s2details
#3--3details

Code

import math

a = input()
list1 = []
array = "01"
for x in range(int(a)):
    b = int(input())
    list1.append(b)
list2 = list1
list2.sort()
for x in range(math.ceil(math.log(int(max(list2)), 2))-1):
    for x in array:
        array2 = ""
        if x == "0":
            array += "1"
        else:
            array += "0"
for x in reversed(list1):
    print(x)
    print(array[x-1])

Test details

Test 1

Group: 1

Verdict:

input
100
62
9
12
73
...

correct output
1
1
1
0
1
...

user output
100
0
100
0
100
...

Test 2

Group: 2

Verdict:

input
100000
565433
141881
120108
825392
...

correct output
1
1
0
0
1
...

user output
999998
1
999994
0
999991
...

Test 3

Group: 3

Verdict:

input
100000
374768524402011755
937067109466254318
389256426086302899
932585725667010169
...

correct output
0
1
1
1
1
...

user output
(empty)