結果

問題 No.3 ビットすごろく
ユーザー niyarinniyarin
提出日時 2017-03-15 13:21:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 08:37:09
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
6,912 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 18 ms
6,940 KB
testcase_03 AC 21 ms
6,944 KB
testcase_04 AC 19 ms
6,944 KB
testcase_05 AC 22 ms
6,940 KB
testcase_06 AC 20 ms
6,948 KB
testcase_07 AC 20 ms
6,940 KB
testcase_08 AC 21 ms
6,948 KB
testcase_09 AC 24 ms
6,940 KB
testcase_10 AC 25 ms
6,944 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 22 ms
6,940 KB
testcase_13 AC 20 ms
6,944 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 26 ms
6,944 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 26 ms
6,944 KB
testcase_20 AC 18 ms
6,940 KB
testcase_21 AC 18 ms
6,940 KB
testcase_22 AC 25 ms
6,944 KB
testcase_23 AC 26 ms
6,940 KB
testcase_24 AC 26 ms
6,940 KB
testcase_25 AC 26 ms
6,944 KB
testcase_26 AC 19 ms
6,944 KB
testcase_27 AC 20 ms
6,944 KB
testcase_28 AC 24 ms
6,944 KB
testcase_29 AC 24 ms
6,940 KB
testcase_30 AC 19 ms
6,944 KB
testcase_31 AC 18 ms
6,944 KB
testcase_32 AC 23 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()


d = []
used = []
for i in range(10001):
    d.append(bin(i).count("1"))
    used.append(0)

que = [(1,1)]
ans = -1
while que:
    pos,cnt = que.pop(0)
    if pos == N:
        ans = cnt
        break
    left = pos-d[pos]
    right = pos + d[pos]

    if left>0 and not used[left]:
        used[left] = 1
        que.append((left,cnt+1))
    if right < N+1 and not used[right]:
        used[right] = 1
        que.append((right,cnt+1))

print ans
0