結果

問題 No.3 ビットすごろく
ユーザー rusa6111rusa6111
提出日時 2019-06-28 22:03:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-07-02 04:44:51
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 50 ms
61,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 58 ms
64,768 KB
testcase_08 AC 60 ms
66,688 KB
testcase_09 AC 61 ms
68,480 KB
testcase_10 AC 61 ms
69,120 KB
testcase_11 AC 62 ms
67,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 60 ms
70,400 KB
testcase_17 AC 63 ms
70,784 KB
testcase_18 AC 57 ms
65,280 KB
testcase_19 AC 61 ms
70,528 KB
testcase_20 AC 51 ms
62,208 KB
testcase_21 AC 39 ms
52,480 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 61 ms
70,656 KB
testcase_25 AC 64 ms
70,656 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 57 ms
65,664 KB
testcase_28 AC 60 ms
69,504 KB
testcase_29 AC 59 ms
68,736 KB
testcase_30 AC 41 ms
52,612 KB
testcase_31 AC 41 ms
52,404 KB
testcase_32 AC 61 ms
67,968 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]:
    print(c[n-1])
else:
    print(-1)
0