結果

問題 No.3 ビットすごろく
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:18:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 69,596 KB
最終ジャッジ日時 2024-09-24 15:18:57
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,052 KB
testcase_01 AC 42 ms
54,544 KB
testcase_02 AC 41 ms
55,176 KB
testcase_03 AC 52 ms
66,224 KB
testcase_04 AC 49 ms
61,848 KB
testcase_05 AC 52 ms
66,164 KB
testcase_06 AC 52 ms
65,788 KB
testcase_07 AC 49 ms
64,520 KB
testcase_08 AC 55 ms
66,024 KB
testcase_09 AC 53 ms
67,492 KB
testcase_10 AC 53 ms
68,928 KB
testcase_11 AC 54 ms
67,716 KB
testcase_12 AC 53 ms
66,500 KB
testcase_13 AC 52 ms
65,040 KB
testcase_14 AC 55 ms
68,408 KB
testcase_15 AC 54 ms
68,344 KB
testcase_16 AC 54 ms
69,140 KB
testcase_17 AC 54 ms
68,844 KB
testcase_18 AC 50 ms
64,604 KB
testcase_19 AC 55 ms
69,076 KB
testcase_20 AC 41 ms
55,408 KB
testcase_21 AC 43 ms
54,984 KB
testcase_22 AC 53 ms
67,604 KB
testcase_23 AC 54 ms
68,968 KB
testcase_24 AC 54 ms
68,824 KB
testcase_25 AC 53 ms
69,596 KB
testcase_26 AC 42 ms
54,028 KB
testcase_27 AC 51 ms
64,940 KB
testcase_28 AC 54 ms
67,960 KB
testcase_29 AC 57 ms
67,332 KB
testcase_30 AC 41 ms
55,628 KB
testcase_31 AC 42 ms
54,644 KB
testcase_32 AC 53 ms
66,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n=int(input())

que=deque([1])
dist=[-1]*(n+1)
dist[1]=1
while que:
    v=que.popleft()
    
    bit_count=bin(v).count("1")
    for nv in [v+bit_count,v-bit_count]:
        if 1<=nv<=n and dist[nv]==-1:
            dist[nv]=dist[v]+1
            que.append(nv)

print(dist[n])
0