結果

問題 No.3 ビットすごろく
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 16:06:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-05-02 19:23:32
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,248 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 68 ms
70,528 KB
testcase_04 AC 54 ms
61,824 KB
testcase_05 AC 81 ms
76,160 KB
testcase_06 AC 70 ms
71,168 KB
testcase_07 AC 67 ms
68,736 KB
testcase_08 AC 81 ms
76,160 KB
testcase_09 AC 78 ms
76,160 KB
testcase_10 AC 80 ms
76,416 KB
testcase_11 AC 78 ms
76,416 KB
testcase_12 AC 79 ms
76,416 KB
testcase_13 AC 65 ms
69,760 KB
testcase_14 AC 84 ms
76,800 KB
testcase_15 AC 88 ms
76,544 KB
testcase_16 AC 86 ms
76,416 KB
testcase_17 AC 83 ms
76,672 KB
testcase_18 AC 65 ms
68,992 KB
testcase_19 AC 85 ms
76,544 KB
testcase_20 AC 52 ms
61,696 KB
testcase_21 AC 42 ms
53,504 KB
testcase_22 AC 83 ms
76,288 KB
testcase_23 AC 84 ms
76,416 KB
testcase_24 AC 84 ms
76,416 KB
testcase_25 AC 82 ms
76,288 KB
testcase_26 AC 41 ms
53,248 KB
testcase_27 AC 65 ms
70,272 KB
testcase_28 AC 84 ms
76,288 KB
testcase_29 AC 81 ms
76,416 KB
testcase_30 AC 44 ms
53,632 KB
testcase_31 AC 43 ms
53,888 KB
testcase_32 AC 80 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
d=[-1]*(n+1)
d[1]=1
q=deque()
q.append(1)
while q:
    now=q.popleft()
    num_2=bin(now)[2:]
    move=sum(list(map(int,num_2)))
    if now-move>=1:
        if d[now-move]==-1:
            d[now-move]=d[now]+1
            q.append(now-move)
    if now+move<=n:
        if d[now+move]==-1:
            d[now+move]=d[now]+1
            q.append(now+move)
print(d[-1])
0