結果

問題 No.3 ビットすごろく
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-05 10:21:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 72,552 KB
最終ジャッジ日時 2024-06-09 17:22:15
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 39 ms
55,132 KB
testcase_03 AC 51 ms
64,460 KB
testcase_04 WA -
testcase_05 AC 59 ms
68,428 KB
testcase_06 AC 51 ms
65,304 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 58 ms
67,836 KB
testcase_13 AC 51 ms
64,220 KB
testcase_14 AC 59 ms
69,412 KB
testcase_15 AC 60 ms
71,312 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
70,096 KB
testcase_23 AC 62 ms
71,044 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
inf = 10**10
dp = [inf]*(n+2)
dp[1] = 0

q = deque([1])
while q:
    now = q.popleft()
    b = bin(now).count("1")
    if now+b <= n and dp[now+b] > dp[now]+1:
        dp[now+b] = dp[now]+1
        q.append(now+b)
    if now-b > 0 and dp[now-b] > dp[now]+1:
        dp[now-b] = dp[now]+1
        q.append(now-b)
ans = dp[n]
if ans == inf:
    ans = -1
print(ans)
0