| Task: | Bittijono |
| Sender: | ufokurpitsa |
| Submission time: | 2017-10-11 09:48:24 +0300 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.07 s | 1 | details |
| #2 | ACCEPTED | 0.09 s | 1 | details |
| #3 | ACCEPTED | 0.10 s | 1 | details |
| #4 | ACCEPTED | 0.08 s | 1 | details |
| #5 | ACCEPTED | 0.09 s | 1 | details |
| #6 | ACCEPTED | 0.07 s | 1 | details |
| #7 | WRONG ANSWER | 0.08 s | 1 | details |
| #8 | ACCEPTED | 0.08 s | 1 | details |
| #9 | ACCEPTED | 0.06 s | 1 | details |
| #10 | WRONG ANSWER | 0.08 s | 1 | details |
| #11 | WRONG ANSWER | 0.08 s | 2 | details |
| #12 | WRONG ANSWER | 0.10 s | 2 | details |
| #13 | WRONG ANSWER | 0.07 s | 2 | details |
| #14 | ACCEPTED | 0.06 s | 2 | details |
| #15 | WRONG ANSWER | 0.09 s | 2 | details |
| #16 | WRONG ANSWER | 0.10 s | 2 | details |
| #17 | WRONG ANSWER | 0.07 s | 2 | details |
| #18 | WRONG ANSWER | 0.09 s | 2 | details |
| #19 | WRONG ANSWER | 0.07 s | 2 | details |
| #20 | WRONG ANSWER | 0.07 s | 2 | details |
| #21 | WRONG ANSWER | 0.08 s | 3 | details |
| #22 | WRONG ANSWER | 0.09 s | 3 | details |
| #23 | WRONG ANSWER | 0.09 s | 3 | details |
| #24 | WRONG ANSWER | 0.10 s | 3 | details |
| #25 | WRONG ANSWER | 0.07 s | 3 | details |
| #26 | WRONG ANSWER | 0.06 s | 3 | details |
| #27 | WRONG ANSWER | 0.10 s | 3 | details |
| #28 | WRONG ANSWER | 0.08 s | 3 | details |
| #29 | WRONG ANSWER | 0.08 s | 3 | details |
| #30 | WRONG ANSWER | 0.08 s | 3 | details |
| #31 | WRONG ANSWER | 0.09 s | 4 | details |
| #32 | WRONG ANSWER | 0.08 s | 4 | details |
| #33 | WRONG ANSWER | 0.07 s | 4 | details |
| #34 | WRONG ANSWER | 0.08 s | 4 | details |
| #35 | WRONG ANSWER | 0.07 s | 4 | details |
| #36 | WRONG ANSWER | 0.08 s | 4 | details |
| #37 | WRONG ANSWER | 0.06 s | 4 | details |
| #38 | WRONG ANSWER | 0.07 s | 4 | details |
| #39 | WRONG ANSWER | 0.07 s | 4 | details |
| #40 | WRONG ANSWER | 0.07 s | 4 | details |
Code
fl = [1,2]
for i in range(29):
fl.append(fl[i] + fl[i+1])
def iol(b):
r = ['0','1']
r *= int((b - (b % 2))/2)
if b % 2 == 1:
r.append('0')
return r
def f(a):
s = 0
inv = {'0': '1', '1': '0'}
if a not in [1,2] and (a+1) in fl:
return a*"0"
for i in range(len(fl)):
s += fl[i]
if s < a and s + fl[i] < a:
continue
if s > a:
while True:
j = i + 2
b = iol(i + 1)
for x in reversed(fl[:i+1]):
if s-x >= a and (x == 1 or len(b) > j):
s -= x
if x == 1:
j -=1
for y in range(j, len(b)):
b[y] = inv[b[y]]
j -= 1
if s == a:
return ''.join(b)
i += 1
elif s == a:
return ''.join(iol(i+1))
print(f(int(input())))
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 2 |
| correct output |
|---|
| 11 |
| user output |
|---|
| 00 |
Test 3
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| 01 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 1111 |
| user output |
|---|
| 0000 |
Test 5
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 5 |
| correct output |
|---|
| 110 |
| user output |
|---|
| 001 |
Test 6
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 6 |
| correct output |
|---|
| 101 |
| user output |
|---|
| 010 |
Test 7
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 7 |
| correct output |
|---|
| 1110 |
| user output |
|---|
| 0000000 |
Test 8
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 8 |
| correct output |
|---|
| 1100 |
| user output |
|---|
| 0011 |
Test 9
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 9 |
| correct output |
|---|
| 1101 |
| user output |
|---|
| 0100 |
Test 10
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 |
| correct output |
|---|
| 1001 |
| user output |
|---|
| 0010 |
Test 11
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 38 |
| correct output |
|---|
| 1101011 |
| user output |
|---|
| 0100111 |
Test 12
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 13 |
| correct output |
|---|
| 11011 |
| user output |
|---|
| 00111 |
Test 13
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 90 |
| correct output |
|---|
| 111001010 |
| user output |
|---|
| 010000000 |
Test 14
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 25 |
| correct output |
|---|
| 110010 |
| user output |
|---|
| 010011 |
Test 15
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 82 |
| correct output |
|---|
| 111001101 |
| user output |
|---|
| 01010010 |
Test 16
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 94 |
| correct output |
|---|
| 1100011110 |
| user output |
|---|
| 001011111 |
Test 17
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 |
| correct output |
|---|
| 1111001001 |
| user output |
|---|
| 010101111 |
Test 18
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 99 |
| correct output |
|---|
| 110010010 |
| user output |
|---|
| 001010000 |
Test 19
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 98 |
| correct output |
|---|
| 110110010 |
| user output |
|---|
| 010010000 |
Test 20
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 92 |
| correct output |
|---|
| 100110001 |
| user output |
|---|
| 010111111 |
Test 21
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
| 010100110111111 |
Test 22
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
| 0010011001101 |
Test 23
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
| 00101010101100000 |
Test 24
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
| 01001101100000000 |
Test 25
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
| 0010101101001000 |
Test 26
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
| 01011010101101111 |
Test 27
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
| 01011010110110000 |
Test 28
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
| 01001100101001111 |
Test 29
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
| 01010101001001111 |
Test 30
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
| 01011011010100111 |
Test 31
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
| 001011010101101010101001 |
Test 32
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
| 0100110010101010100100111111 |
Test 33
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
| 00101101001011001101101 |
Test 34
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
| 010101101010010010110010110 |
Test 35
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
| 01010110010010110010101010 |
Test 36
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
| 0010110011011001010010110000 |
Test 37
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
| 0100101011011010110101101111 |
Test 38
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
| 0100110110010010110110100111 |
Test 39
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
| 0010100110010101011001100111 |
Test 40
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
| 0100101011011001001011001111 |
