| Task: | Bittijono |
| Sender: | inkeri |
| Submission time: | 2017-10-14 21:59:09 +0300 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| #4 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.07 s | 1 | details |
| #2 | RUNTIME ERROR | 0.09 s | 1 | details |
| #3 | RUNTIME ERROR | 0.06 s | 1 | details |
| #4 | RUNTIME ERROR | 0.09 s | 1 | details |
| #5 | RUNTIME ERROR | 0.06 s | 1 | details |
| #6 | RUNTIME ERROR | 0.06 s | 1 | details |
| #7 | RUNTIME ERROR | 0.08 s | 1 | details |
| #8 | RUNTIME ERROR | 0.08 s | 1 | details |
| #9 | RUNTIME ERROR | 0.09 s | 1 | details |
| #10 | RUNTIME ERROR | 0.07 s | 1 | details |
| #11 | RUNTIME ERROR | 0.06 s | 2 | details |
| #12 | RUNTIME ERROR | 0.09 s | 2 | details |
| #13 | RUNTIME ERROR | 0.07 s | 2 | details |
| #14 | RUNTIME ERROR | 0.08 s | 2 | details |
| #15 | RUNTIME ERROR | 0.07 s | 2 | details |
| #16 | RUNTIME ERROR | 0.06 s | 2 | details |
| #17 | RUNTIME ERROR | 0.08 s | 2 | details |
| #18 | RUNTIME ERROR | 0.09 s | 2 | details |
| #19 | RUNTIME ERROR | 0.08 s | 2 | details |
| #20 | RUNTIME ERROR | 0.07 s | 2 | details |
| #21 | RUNTIME ERROR | 0.08 s | 3 | details |
| #22 | RUNTIME ERROR | 0.07 s | 3 | details |
| #23 | RUNTIME ERROR | 0.08 s | 3 | details |
| #24 | RUNTIME ERROR | 0.09 s | 3 | details |
| #25 | RUNTIME ERROR | 0.08 s | 3 | details |
| #26 | RUNTIME ERROR | 0.10 s | 3 | details |
| #27 | RUNTIME ERROR | 0.07 s | 3 | details |
| #28 | RUNTIME ERROR | 0.07 s | 3 | details |
| #29 | RUNTIME ERROR | 0.06 s | 3 | details |
| #30 | RUNTIME ERROR | 0.08 s | 3 | details |
| #31 | RUNTIME ERROR | 0.06 s | 4 | details |
| #32 | RUNTIME ERROR | 0.06 s | 4 | details |
| #33 | RUNTIME ERROR | 0.08 s | 4 | details |
| #34 | RUNTIME ERROR | 0.06 s | 4 | details |
| #35 | RUNTIME ERROR | 0.10 s | 4 | details |
| #36 | RUNTIME ERROR | 0.07 s | 4 | details |
| #37 | RUNTIME ERROR | 0.08 s | 4 | details |
| #38 | RUNTIME ERROR | 0.07 s | 4 | details |
| #39 | RUNTIME ERROR | 0.07 s | 4 | details |
| #40 | RUNTIME ERROR | 0.07 s | 4 | details |
Code
# def main():
# for i in range(1, 100):
# a = main1(i)
# if a != 0:
# print(i)
# print(a)
# print()
def main(tavoite):
#tavoite = int(input())
pituus = 1;
summa = 1
a = 1
b = 1
while summa < tavoite:
pituus+=1
a, b = a + b, a
summa += a
alku = 2**(pituus-1)
loppu = 2*alku
parillinen = tavoite % 2 == 0
kaytetyt = set()
# skipatut1 = 0
# skipatut2 = 0
while True:
a = []
if parillinen:
a.append([alku + 1, loppu, 3])
else:
a.append([alku, loppu, 3])
a.append([alku + 2, loppu, 3])
#minimi- ja maksimimäärät tietyille 0:en ja 1:en suhteille
maarat = {}
maarat[pituus] = pituus
# print()
# print(pituus)
# print()
for maara in range(pituus - 1, pituus // 2, -1):
patkat = []
patkienMaara = pituus - maara + 1
# print(maara)
# print(patkienMaara)
maara1 = maara
while maara1 > 0:
patka = maara1 // patkienMaara
patkienMaara -= 1
patkat.append(patka)
maara1 -= patka
# print(patkat)
jono = ""
while len(patkat) > 2:
jono += "1" * patkat.pop(0)
jono += "0"
jono += "1" * patkat.pop()
jono += "0"
if len(patkat) == 2:
jono += "1" * patkat.pop(0)
jono += "0"
jono += "1" * patkat.pop()
# print(jono)
maarat[maara] = alijonot(jono)
if pituus % 2 == 0:
jono = "10" * (pituus // 2)
maarat[pituus // 2] = alijonot(jono)
# print()
# print(jono)
# print(pituus)
# print(maarat)
for lista in a:
for j in range(lista[0], lista[1], lista[2]):
if j in kaytetyt:
# skipatut1 += 1
continue
jono = format(j, 'b')
maara = 0
for merkki in jono:
if merkki == "1":
maara += 1
if maara <= pituus // 2:
maara = pituus - maara
if maarat[maara] < tavoite:
# skipatut2 += 1
continue
if alijonot(jono) == tavoite:
#print("käytetyt: " + str(skipatut1))
#print("määrä: " + str(skipatut2))
print(jono)
return
# return skipatut2
if j % 2 != 0:
kaytetyt.add(int(jono[::-1], 2))
else:
#käännetään merkit miinuslaskulla (11111 - 10110 = 01001)
#sitten peilaus: 01001 --> 10010
miinus = loppu - 1 - j;
bittijono = format(miinus, 'b')
peilattu = bittijono[::-1]
peilattu += "0" * (len(jono) - len(peilattu))
kaytetyt.add(int(peilattu, 2))
alku = loppu
loppu *= 2
pituus += 1
def alijonot(bittijono):
uusia0 = 1
uusia1 = 1
maara = 0
for i in range(len(bittijono)):
luku = bittijono[i]
if luku == "1":
maara += uusia1
uusia0 += uusia1
else:
maara += uusia0
uusia1 += uusia0
return maara
main()
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...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 118, in <module>
main(...Test 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 4 |
| correct output |
|---|
| 1111 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...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 118, 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 118, 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 118, 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 118, in <module>
main(...Test 9
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 9 |
| correct output |
|---|
| 1101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...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 118, in <module>
main(...Test 11
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 38 |
| correct output |
|---|
| 1101011 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...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 118, in <module>
main(...Test 13
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 90 |
| correct output |
|---|
| 111001010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 14
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 25 |
| correct output |
|---|
| 110010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 15
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 82 |
| correct output |
|---|
| 111001101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 16
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 94 |
| correct output |
|---|
| 1100011110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 17
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 |
| correct output |
|---|
| 1111001001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 18
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 99 |
| correct output |
|---|
| 110010010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 19
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 98 |
| correct output |
|---|
| 110110010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 20
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 92 |
| correct output |
|---|
| 100110001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 22
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 23
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 24
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 25
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 26
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 27
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 28
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 29
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 30
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 31
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 32
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 33
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 34
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 35
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 36
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 37
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 38
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 39
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...Test 40
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 118, in <module>
main(...