結果

問題 No.3 ビットすごろく
ユーザー rlangevinrlangevin
提出日時 2023-01-08 01:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 70,756 KB
最終ジャッジ日時 2024-12-15 03:20:50
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,696 KB
testcase_01 AC 43 ms
54,912 KB
testcase_02 AC 43 ms
54,244 KB
testcase_03 AC 56 ms
66,164 KB
testcase_04 AC 50 ms
63,888 KB
testcase_05 AC 56 ms
67,356 KB
testcase_06 AC 56 ms
65,580 KB
testcase_07 AC 56 ms
64,892 KB
testcase_08 AC 58 ms
66,900 KB
testcase_09 AC 56 ms
68,312 KB
testcase_10 AC 57 ms
68,628 KB
testcase_11 AC 57 ms
68,076 KB
testcase_12 AC 57 ms
67,452 KB
testcase_13 AC 56 ms
65,616 KB
testcase_14 AC 57 ms
68,440 KB
testcase_15 AC 57 ms
69,944 KB
testcase_16 AC 58 ms
68,756 KB
testcase_17 AC 57 ms
69,296 KB
testcase_18 AC 56 ms
66,532 KB
testcase_19 AC 57 ms
70,140 KB
testcase_20 AC 48 ms
60,708 KB
testcase_21 AC 43 ms
53,852 KB
testcase_22 AC 57 ms
68,284 KB
testcase_23 AC 58 ms
70,756 KB
testcase_24 AC 57 ms
69,588 KB
testcase_25 AC 58 ms
70,024 KB
testcase_26 AC 42 ms
54,388 KB
testcase_27 AC 55 ms
65,320 KB
testcase_28 AC 57 ms
68,948 KB
testcase_29 AC 57 ms
68,444 KB
testcase_30 AC 43 ms
55,168 KB
testcase_31 AC 42 ms
53,988 KB
testcase_32 AC 56 ms
68,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n //= 2
    return cnt

N = int(input())
dist = [-1] * (N + 1)
dist[1] = 1
Q = deque([1])
while Q:
    n = Q.popleft()
    d = popcount(n)
    for i in range(-1, 2, 2):
        if 1 <= n - i * d <= N:
            if dist[n - i * d] != -1:
                continue
            dist[n - i * d] = dist[n] + 1
            Q.append(n - i * d)
print(dist[N])
0