結果

問題 No.3 ビットすごろく
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 17:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 66,056 KB
最終ジャッジ日時 2024-06-09 17:46:28
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,376 KB
testcase_01 AC 34 ms
53,688 KB
testcase_02 AC 35 ms
53,852 KB
testcase_03 AC 42 ms
62,756 KB
testcase_04 AC 37 ms
54,116 KB
testcase_05 AC 46 ms
64,268 KB
testcase_06 AC 41 ms
62,476 KB
testcase_07 AC 41 ms
60,760 KB
testcase_08 AC 42 ms
64,428 KB
testcase_09 AC 45 ms
64,604 KB
testcase_10 AC 45 ms
64,596 KB
testcase_11 AC 47 ms
64,948 KB
testcase_12 AC 45 ms
63,848 KB
testcase_13 AC 40 ms
61,904 KB
testcase_14 AC 45 ms
66,048 KB
testcase_15 AC 45 ms
65,144 KB
testcase_16 AC 45 ms
66,040 KB
testcase_17 AC 44 ms
64,476 KB
testcase_18 AC 40 ms
61,236 KB
testcase_19 AC 46 ms
64,656 KB
testcase_20 AC 36 ms
54,744 KB
testcase_21 AC 37 ms
55,276 KB
testcase_22 AC 47 ms
64,036 KB
testcase_23 AC 47 ms
64,784 KB
testcase_24 AC 50 ms
65,408 KB
testcase_25 AC 48 ms
66,052 KB
testcase_26 AC 35 ms
53,700 KB
testcase_27 AC 39 ms
62,260 KB
testcase_28 AC 49 ms
66,056 KB
testcase_29 AC 46 ms
63,824 KB
testcase_30 AC 33 ms
54,164 KB
testcase_31 AC 33 ms
55,260 KB
testcase_32 AC 44 ms
64,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
dist = [0] * (N + 1)
visited = [False] * (N + 1)

q = deque()
q.append(1)
visited[1] = True
while q:
    x = q.popleft()
    p = x.bit_count()
    if x + p <= N and not visited[x + p]:
        visited[x + p] = True
        dist[x + p] = dist[x] + 1
        q.append(x + p)
    if x - p > 0 and not visited[x - p]:
        visited[x - p] = True
        dist[x - p] = dist[x] + 1
        q.append(x - p)
print(dist[N]+1 if visited[N] else -1)
0