結果

問題 No.3 ビットすごろく
ユーザー Akijin_007Akijin_007
提出日時 2022-11-04 14:04:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 689 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 73,920 KB
最終ジャッジ日時 2024-07-18 13:37:43
合計ジャッジ時間 3,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,152 KB
testcase_01 AC 36 ms
53,912 KB
testcase_02 AC 39 ms
54,384 KB
testcase_03 AC 54 ms
66,880 KB
testcase_04 AC 44 ms
60,552 KB
testcase_05 AC 55 ms
68,972 KB
testcase_06 AC 53 ms
68,700 KB
testcase_07 AC 47 ms
65,480 KB
testcase_08 AC 48 ms
68,152 KB
testcase_09 AC 51 ms
70,060 KB
testcase_10 AC 50 ms
71,252 KB
testcase_11 AC 50 ms
70,148 KB
testcase_12 AC 48 ms
69,060 KB
testcase_13 AC 45 ms
66,604 KB
testcase_14 AC 50 ms
70,808 KB
testcase_15 AC 51 ms
72,024 KB
testcase_16 AC 53 ms
72,548 KB
testcase_17 AC 58 ms
72,476 KB
testcase_18 AC 52 ms
65,904 KB
testcase_19 AC 56 ms
72,368 KB
testcase_20 AC 39 ms
55,244 KB
testcase_21 AC 38 ms
54,948 KB
testcase_22 AC 54 ms
71,312 KB
testcase_23 AC 53 ms
73,920 KB
testcase_24 AC 51 ms
72,532 KB
testcase_25 AC 51 ms
72,948 KB
testcase_26 AC 35 ms
53,944 KB
testcase_27 AC 50 ms
67,364 KB
testcase_28 AC 52 ms
71,436 KB
testcase_29 AC 50 ms
69,816 KB
testcase_30 AC 35 ms
55,640 KB
testcase_31 AC 39 ms
54,460 KB
testcase_32 AC 53 ms
69,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())

def popcnt(n):
    return bin(n).count("1")

to = [[] for i in range(N+1)]
if N > 1:
    to[1] = [2]
for i in range(2, N+1):
    p = popcnt(i)
    if i + p <= N:
        to[i] = [i+p, i-p]
    else:
        to[i] = [i-p]

q = [1]

v = [-1] * (N+1)
v[1] = 1

from collections import deque
q = deque(q)

while q:
    t = q.popleft()
    for x in to[t]:
        if v[x] != -1:
            continue
        v[x] = v[t] + 1
        q.append(x)

print(v[N])


0