結果

問題 No.3 ビットすごろく
ユーザー PreginaPregina
提出日時 2023-12-03 18:38:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-09-26 22:13:44
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 50 ms
53,248 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 67 ms
66,176 KB
testcase_04 AC 53 ms
59,776 KB
testcase_05 AC 70 ms
68,224 KB
testcase_06 AC 67 ms
66,304 KB
testcase_07 AC 65 ms
64,896 KB
testcase_08 AC 69 ms
67,456 KB
testcase_09 AC 72 ms
69,248 KB
testcase_10 AC 73 ms
70,400 KB
testcase_11 AC 74 ms
68,864 KB
testcase_12 AC 79 ms
68,096 KB
testcase_13 AC 75 ms
65,408 KB
testcase_14 AC 81 ms
70,016 KB
testcase_15 AC 85 ms
71,424 KB
testcase_16 AC 83 ms
70,912 KB
testcase_17 AC 84 ms
71,296 KB
testcase_18 AC 75 ms
65,408 KB
testcase_19 AC 86 ms
71,680 KB
testcase_20 AC 56 ms
54,144 KB
testcase_21 AC 52 ms
53,376 KB
testcase_22 AC 81 ms
70,144 KB
testcase_23 AC 84 ms
71,552 KB
testcase_24 AC 85 ms
71,552 KB
testcase_25 AC 84 ms
71,424 KB
testcase_26 AC 53 ms
53,376 KB
testcase_27 AC 75 ms
66,048 KB
testcase_28 AC 82 ms
70,784 KB
testcase_29 AC 81 ms
68,992 KB
testcase_30 AC 53 ms
53,632 KB
testcase_31 AC 54 ms
53,888 KB
testcase_32 AC 78 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N = int(input())
G = [[] for _ in range(N+1)]

for i in range(1, N+1):
    cnt = bin(i).count('1')
    if i+cnt <= N:
        G[i].append(i+cnt)
    if i-cnt > 0:
        G[i].append(i-cnt)

dist = [-1]*(N+1)
dist[1] = 1
que = deque([1])
while que:
    v = que.popleft()
    for nv in G[v]:
        if dist[nv] == -1:
            dist[nv] = dist[v] + 1
            que.append(nv)

print(dist[N])
0