結果

問題 No.3 ビットすごろく
ユーザー convexineqconvexineq
提出日時 2020-11-22 06:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-07-01 10:00:25
合計ジャッジ時間 3,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,120 KB
testcase_01 AC 46 ms
53,120 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 60 ms
63,744 KB
testcase_04 AC 54 ms
61,312 KB
testcase_05 AC 60 ms
65,024 KB
testcase_06 AC 60 ms
63,616 KB
testcase_07 AC 58 ms
62,336 KB
testcase_08 AC 61 ms
64,896 KB
testcase_09 AC 61 ms
66,176 KB
testcase_10 AC 63 ms
67,328 KB
testcase_11 AC 60 ms
65,536 KB
testcase_12 AC 61 ms
65,280 KB
testcase_13 AC 59 ms
63,488 KB
testcase_14 AC 62 ms
66,816 KB
testcase_15 AC 64 ms
67,840 KB
testcase_16 AC 63 ms
67,968 KB
testcase_17 AC 63 ms
67,840 KB
testcase_18 AC 60 ms
63,360 KB
testcase_19 AC 64 ms
68,224 KB
testcase_20 AC 52 ms
59,392 KB
testcase_21 AC 46 ms
52,864 KB
testcase_22 AC 63 ms
67,072 KB
testcase_23 AC 64 ms
68,224 KB
testcase_24 AC 64 ms
67,840 KB
testcase_25 AC 64 ms
67,712 KB
testcase_26 AC 47 ms
52,992 KB
testcase_27 AC 60 ms
63,616 KB
testcase_28 AC 64 ms
67,456 KB
testcase_29 AC 61 ms
66,176 KB
testcase_30 AC 47 ms
52,992 KB
testcase_31 AC 47 ms
53,248 KB
testcase_32 AC 63 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    r = 0
    while x:
        r += x%2
        x //= 2
    return r

n = int(input())
dp = [-1]*(n+1)
dp[1] = 1
from collections import deque
q = deque()
q.append(1)
while q:
    v = q.popleft()
    c = popcount(v)
    for i in [v-c,v+c]:
        if 0 < i <= n and dp[i]==-1:
            dp[i] = dp[v]+1
            q.append(i)

print(dp[n])
0