結果

問題 No.3 ビットすごろく
ユーザー 👑 rin204rin204
提出日時 2022-01-20 21:28:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-11-24 06:16:31
合計ジャッジ時間 3,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 59 ms
63,360 KB
testcase_04 AC 49 ms
54,144 KB
testcase_05 AC 67 ms
66,688 KB
testcase_06 AC 64 ms
64,128 KB
testcase_07 AC 58 ms
62,592 KB
testcase_08 AC 66 ms
66,176 KB
testcase_09 AC 67 ms
67,456 KB
testcase_10 AC 69 ms
68,224 KB
testcase_11 AC 67 ms
67,072 KB
testcase_12 AC 67 ms
66,432 KB
testcase_13 AC 59 ms
62,848 KB
testcase_14 AC 69 ms
68,096 KB
testcase_15 AC 72 ms
69,248 KB
testcase_16 AC 71 ms
68,864 KB
testcase_17 AC 72 ms
69,120 KB
testcase_18 AC 58 ms
62,848 KB
testcase_19 AC 72 ms
69,376 KB
testcase_20 AC 49 ms
53,888 KB
testcase_21 AC 46 ms
53,248 KB
testcase_22 AC 70 ms
68,096 KB
testcase_23 AC 72 ms
69,248 KB
testcase_24 AC 72 ms
69,504 KB
testcase_25 AC 72 ms
69,248 KB
testcase_26 AC 46 ms
53,376 KB
testcase_27 AC 58 ms
63,360 KB
testcase_28 AC 70 ms
69,120 KB
testcase_29 AC 67 ms
67,072 KB
testcase_30 AC 46 ms
53,120 KB
testcase_31 AC 46 ms
53,248 KB
testcase_32 AC 67 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

dist = [-1] * (n + 1)
queue = deque()
queue.append(1)
dist[1] = 1

while queue:
    pos = queue.popleft()
    d = bin(pos).count("1")
    
    npos = pos + d
    if npos <= n and dist[npos] == -1:
        dist[npos] = dist[pos] + 1
        queue.append(npos)
    
    npos = pos - d
    if npos > 0 and dist[npos] == -1:
        dist[npos] = dist[pos] + 1
        queue.append(npos)

print(dist[n])
0