結果

問題 No.3 ビットすごろく
ユーザー NoaSaberNoaSaber
提出日時 2021-03-07 10:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-08 23:07:13
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 68 ms
68,352 KB
testcase_04 AC 44 ms
55,296 KB
testcase_05 AC 75 ms
74,240 KB
testcase_06 AC 67 ms
69,120 KB
testcase_07 AC 58 ms
65,408 KB
testcase_08 AC 72 ms
72,192 KB
testcase_09 AC 83 ms
76,544 KB
testcase_10 AC 85 ms
76,544 KB
testcase_11 AC 82 ms
76,160 KB
testcase_12 AC 76 ms
73,984 KB
testcase_13 AC 62 ms
66,816 KB
testcase_14 AC 85 ms
76,544 KB
testcase_15 AC 85 ms
76,544 KB
testcase_16 AC 83 ms
76,288 KB
testcase_17 AC 82 ms
76,288 KB
testcase_18 AC 57 ms
65,920 KB
testcase_19 AC 85 ms
76,416 KB
testcase_20 AC 44 ms
54,528 KB
testcase_21 AC 41 ms
53,504 KB
testcase_22 AC 83 ms
76,544 KB
testcase_23 AC 86 ms
76,448 KB
testcase_24 AC 86 ms
76,288 KB
testcase_25 AC 84 ms
76,544 KB
testcase_26 AC 40 ms
53,632 KB
testcase_27 AC 60 ms
67,200 KB
testcase_28 AC 81 ms
76,288 KB
testcase_29 AC 80 ms
76,416 KB
testcase_30 AC 43 ms
53,760 KB
testcase_31 AC 43 ms
53,760 KB
testcase_32 AC 81 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp=[float("inf")]*(N+1)
dp[1]=1;dp[0]=-1
from collections import deque
q=deque([1])
while q:
    i=q.popleft()
    if dp[i]>=1:
        a=str(bin(i))
        a=a.count("1")
        try:
            if dp[i+a]==float("inf"):
                q.append(i+a)
            dp[i+a]=min(dp[i]+1,dp[i+a])
        except IndexError:
            pass
        try:
            if dp[i-a]==float("inf"):
                q.append(i-a)
            dp[i-a]=min(dp[i]+1,dp[i-a])
        except IndexError:
            pass
print(dp[N] if dp[N]!=float("inf") else -1)
0