結果

問題 No.3 ビットすごろく
ユーザー rusa6111rusa6111
提出日時 2019-06-28 22:06:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 71,440 KB
最終ジャッジ日時 2024-07-01 09:23:22
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 42 ms
52,968 KB
testcase_02 AC 42 ms
54,040 KB
testcase_03 AC 58 ms
66,192 KB
testcase_04 AC 47 ms
61,816 KB
testcase_05 AC 59 ms
67,048 KB
testcase_06 AC 57 ms
66,900 KB
testcase_07 AC 55 ms
66,128 KB
testcase_08 AC 61 ms
67,308 KB
testcase_09 AC 59 ms
69,152 KB
testcase_10 AC 59 ms
70,840 KB
testcase_11 AC 60 ms
69,224 KB
testcase_12 AC 59 ms
68,032 KB
testcase_13 AC 56 ms
66,008 KB
testcase_14 AC 60 ms
69,812 KB
testcase_15 AC 60 ms
71,164 KB
testcase_16 AC 60 ms
71,308 KB
testcase_17 AC 59 ms
71,440 KB
testcase_18 AC 56 ms
65,524 KB
testcase_19 AC 59 ms
71,424 KB
testcase_20 AC 50 ms
62,892 KB
testcase_21 AC 38 ms
53,104 KB
testcase_22 AC 59 ms
69,704 KB
testcase_23 AC 60 ms
70,596 KB
testcase_24 AC 60 ms
71,064 KB
testcase_25 AC 61 ms
70,396 KB
testcase_26 AC 38 ms
52,368 KB
testcase_27 AC 56 ms
65,904 KB
testcase_28 AC 59 ms
70,336 KB
testcase_29 AC 58 ms
68,216 KB
testcase_30 AC 40 ms
53,092 KB
testcase_31 AC 39 ms
52,732 KB
testcase_32 AC 58 ms
68,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bc(n):
    c=0
    while n:
        if n%2:
            n-=1
            c+=1
        n=int(n/2)
    return c

n=int(input())
b=[bc(i+1) for i in range(n)]
c=[9999999 for i in range(n)]
c[0]=1
v=1
while(v):
    v=0
    for j in range(n):
        if j-b[j]>=0 and c[j-b[j]]>c[j]+1:
            v=1
            c[j-b[j]]=c[j]+1
        if j+b[j]<n and c[j+b[j]]>c[j]+1:
            v=1
            c[j+b[j]]=c[j]+1
if c[n-1]<n+1:
    print(c[n-1])
else:
    print(-1)
0