| Task: | Bittijono |
| Sender: | inkeri |
| Submission time: | 2017-10-11 13:21:07 +0300 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.07 s | 1 | details |
| #2 | RUNTIME ERROR | 0.09 s | 1 | details |
| #3 | WRONG ANSWER | 0.09 s | 1 | details |
| #4 | ACCEPTED | 0.09 s | 1 | details |
| #5 | RUNTIME ERROR | 0.07 s | 1 | details |
| #6 | RUNTIME ERROR | 0.08 s | 1 | details |
| #7 | RUNTIME ERROR | 0.07 s | 1 | details |
| #8 | RUNTIME ERROR | 0.07 s | 1 | details |
| #9 | WRONG ANSWER | 0.07 s | 1 | details |
| #10 | RUNTIME ERROR | 0.07 s | 1 | details |
| #11 | WRONG ANSWER | 0.06 s | 2 | details |
| #12 | RUNTIME ERROR | 0.09 s | 2 | details |
| #13 | WRONG ANSWER | 0.09 s | 2 | details |
| #14 | WRONG ANSWER | 0.06 s | 2 | details |
| #15 | ACCEPTED | 0.06 s | 2 | details |
| #16 | ACCEPTED | 0.08 s | 2 | details |
| #17 | ACCEPTED | 0.06 s | 2 | details |
| #18 | WRONG ANSWER | 0.10 s | 2 | details |
| #19 | WRONG ANSWER | 0.09 s | 2 | details |
| #20 | WRONG ANSWER | 0.07 s | 2 | details |
| #21 | WRONG ANSWER | 0.21 s | 3 | details |
| #22 | ACCEPTED | 0.08 s | 3 | details |
| #23 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #24 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #25 | WRONG ANSWER | 0.40 s | 3 | details |
| #26 | WRONG ANSWER | 0.93 s | 3 | details |
| #27 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #28 | ACCEPTED | 0.90 s | 3 | details |
| #29 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #30 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #31 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #32 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #33 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #34 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #35 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #36 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #37 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #38 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #39 | TIME LIMIT EXCEEDED | -- | 4 | details |
| #40 | TIME LIMIT EXCEEDED | -- | 4 | details |
Code
def main():
tavoite = int(input())
if tavoite == 1:
print(tavoite)
return
pituus = 1;
summa = 1
a = 1
b = 1
while summa < tavoite:
pituus+=1
a, b = a + b, a
summa += a
loppu = 2**(pituus - 1)
#jonot[i] = [maara, prev0, prev1, arvo]
jonot = [[1,2,1,1]]
for i in range(1, loppu):
arvot = jonot.pop(0)
#lisätään 0
jonot.append([arvot[0] + arvot[1], arvot[1], arvot[1] + arvot[2], arvot[3]*2])
#lisätään 1
jonot.append([arvot[0] + arvot[2], arvot[1] + arvot[2], arvot[2], arvot[3]*2+1])
while True:
arvot = jonot.pop(0)
maara1 = arvot[0] + arvot[1]
arvo1 = arvot[3] * 2
arvo2 = arvo1 + 1
maara2 = arvot[0] + arvot[1]
if arvot[0] + arvot[1] == tavoite:
print(format(arvo1, 'b'))
return
if arvot[0] + arvot[2] == tavoite:
print(format(arvo2, 'b'))
return
if arvo1 < tavoite:
#lisätään 0
jonot.append([arvot[0] + arvot[1], arvot[1], arvot[1] + arvot[2], arvo1])
if arvo2 < tavoite:
#lisätään 1
jonot.append([arvot[0] + arvot[2], arvot[1] + arvot[2], arvot[2], arvo2])
main()
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 2 |
| correct output |
|---|
| 11 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 3
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| 111 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 1111 |
| user output |
|---|
| 1111 |
Test 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 5 |
| correct output |
|---|
| 110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 6
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 6 |
| correct output |
|---|
| 101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 7
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 7 |
| correct output |
|---|
| 1110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 8
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 8 |
| correct output |
|---|
| 1100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 9
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 9 |
| correct output |
|---|
| 1101 |
| user output |
|---|
| 10000 |
Test 10
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 |
| correct output |
|---|
| 1001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 11
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 38 |
| correct output |
|---|
| 1101011 |
| user output |
|---|
| 10010000 |
Test 12
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 13 |
| correct output |
|---|
| 11011 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 42, in <module>
main()...Test 13
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 90 |
| correct output |
|---|
| 111001010 |
| user output |
|---|
| 1100110000 |
Test 14
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 25 |
| correct output |
|---|
| 110010 |
| user output |
|---|
| 1001111 |
Test 15
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 82 |
| correct output |
|---|
| 111001101 |
| user output |
|---|
| 100010011 |
Test 16
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 94 |
| correct output |
|---|
| 1100011110 |
| user output |
|---|
| 1000011100 |
Test 17
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 |
| correct output |
|---|
| 1111001001 |
| user output |
|---|
| 1001001111 |
Test 18
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 99 |
| correct output |
|---|
| 110010010 |
| user output |
|---|
| 1101010000 |
Test 19
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 98 |
| correct output |
|---|
| 110110010 |
| user output |
|---|
| 1100001100 |
Test 20
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 92 |
| correct output |
|---|
| 100110001 |
| user output |
|---|
| 1000001101 |
Test 21
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
| 1011000101001000 |
Test 22
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
| 10100010110100 |
Test 23
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
| (empty) |
Test 24
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
| (empty) |
Test 25
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
| 10001010100010100 |
Test 26
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
| 100010011011010011 |
Test 27
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
| (empty) |
Test 28
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
| 100010101110110110 |
Test 29
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
| (empty) |
Test 30
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
| (empty) |
Test 31
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
| (empty) |
Test 32
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
| (empty) |
Test 33
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
| (empty) |
Test 34
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
| (empty) |
Test 35
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
| (empty) |
Test 36
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
| (empty) |
Test 37
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
| (empty) |
Test 38
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
| (empty) |
Test 39
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
| (empty) |
Test 40
Group: 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
| (empty) |
