結果

問題 No.3 ビットすごろく
ユーザー ryusukeryusuke
提出日時 2022-02-08 00:02:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 66,628 KB
最終ジャッジ日時 2024-06-22 15:56:22
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,848 KB
testcase_01 AC 36 ms
54,820 KB
testcase_02 AC 36 ms
54,356 KB
testcase_03 AC 45 ms
63,656 KB
testcase_04 AC 42 ms
62,264 KB
testcase_05 AC 47 ms
64,448 KB
testcase_06 AC 48 ms
64,008 KB
testcase_07 AC 46 ms
64,092 KB
testcase_08 AC 46 ms
63,876 KB
testcase_09 AC 49 ms
65,168 KB
testcase_10 AC 52 ms
64,728 KB
testcase_11 AC 48 ms
64,136 KB
testcase_12 AC 48 ms
64,944 KB
testcase_13 AC 48 ms
64,084 KB
testcase_14 AC 49 ms
65,016 KB
testcase_15 AC 49 ms
65,412 KB
testcase_16 AC 50 ms
65,040 KB
testcase_17 AC 50 ms
65,540 KB
testcase_18 AC 48 ms
64,076 KB
testcase_19 AC 50 ms
65,516 KB
testcase_20 AC 44 ms
62,832 KB
testcase_21 AC 35 ms
54,292 KB
testcase_22 AC 49 ms
64,400 KB
testcase_23 AC 52 ms
66,352 KB
testcase_24 AC 51 ms
65,536 KB
testcase_25 AC 51 ms
66,628 KB
testcase_26 AC 38 ms
54,184 KB
testcase_27 AC 47 ms
64,536 KB
testcase_28 AC 51 ms
65,872 KB
testcase_29 AC 49 ms
64,772 KB
testcase_30 AC 39 ms
60,348 KB
testcase_31 AC 40 ms
60,512 KB
testcase_32 AC 48 ms
65,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

dist = [0] * (n + 1)
dist[1] = 1

q = deque([1])
while q:
    v = q.popleft()
    cnt = 0
    for i in range(60):
        if v >> i & 1:
            cnt += 1

    a = v - cnt
    if 1 <= a <= n:
        if dist[a] == 0:
            dist[a] = dist[v] + 1
            q.append(a)

    b = v + cnt
    if 1 <= b <= n:
        if dist[b] == 0:
            dist[b] = dist[v] + 1
            q.append(b)

print(dist[-1]) if dist[-1] != 0 else print(-1)
0