結果

問題 No.3 ビットすごろく
ユーザー Akijin_007Akijin_007
提出日時 2022-11-04 14:03:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 533 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-07-18 13:34:58
合計ジャッジ時間 2,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,760 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 39 ms
54,016 KB
testcase_03 AC 50 ms
67,072 KB
testcase_04 AC 40 ms
60,288 KB
testcase_05 AC 48 ms
68,608 KB
testcase_06 AC 49 ms
66,944 KB
testcase_07 AC 46 ms
65,792 KB
testcase_08 AC 49 ms
67,840 KB
testcase_09 AC 50 ms
69,632 KB
testcase_10 AC 55 ms
70,784 KB
testcase_11 AC 50 ms
69,888 KB
testcase_12 AC 50 ms
69,120 KB
testcase_13 AC 47 ms
66,084 KB
testcase_14 AC 52 ms
70,656 KB
testcase_15 AC 52 ms
71,936 KB
testcase_16 AC 52 ms
71,296 KB
testcase_17 AC 52 ms
71,808 KB
testcase_18 AC 48 ms
65,920 KB
testcase_19 AC 51 ms
71,936 KB
testcase_20 AC 37 ms
54,656 KB
testcase_21 AC 34 ms
53,760 KB
testcase_22 AC 49 ms
70,528 KB
testcase_23 AC 52 ms
72,192 KB
testcase_24 AC 52 ms
72,064 KB
testcase_25 AC 53 ms
71,936 KB
testcase_26 RE -
testcase_27 AC 47 ms
66,432 KB
testcase_28 AC 51 ms
71,296 KB
testcase_29 AC 49 ms
69,376 KB
testcase_30 AC 36 ms
53,632 KB
testcase_31 AC 35 ms
53,888 KB
testcase_32 AC 51 ms
69,120 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)]
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