結果

問題 No.3 ビットすごろく
ユーザー miho-4miho-4
提出日時 2023-04-08 07:34:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 69,996 KB
最終ジャッジ日時 2024-10-03 04:12:36
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,524 KB
testcase_01 AC 40 ms
55,372 KB
testcase_02 AC 43 ms
54,648 KB
testcase_03 AC 56 ms
65,936 KB
testcase_04 AC 47 ms
62,572 KB
testcase_05 AC 52 ms
66,696 KB
testcase_06 AC 51 ms
65,244 KB
testcase_07 AC 49 ms
64,740 KB
testcase_08 AC 49 ms
66,144 KB
testcase_09 AC 52 ms
67,412 KB
testcase_10 AC 52 ms
68,448 KB
testcase_11 AC 52 ms
67,772 KB
testcase_12 AC 51 ms
66,804 KB
testcase_13 AC 50 ms
65,452 KB
testcase_14 AC 50 ms
68,204 KB
testcase_15 AC 53 ms
69,996 KB
testcase_16 AC 53 ms
68,788 KB
testcase_17 AC 55 ms
68,724 KB
testcase_18 AC 49 ms
64,872 KB
testcase_19 AC 56 ms
69,528 KB
testcase_20 AC 41 ms
55,256 KB
testcase_21 AC 37 ms
54,592 KB
testcase_22 AC 51 ms
69,012 KB
testcase_23 AC 54 ms
69,928 KB
testcase_24 AC 54 ms
69,016 KB
testcase_25 AC 54 ms
69,916 KB
testcase_26 AC 40 ms
54,980 KB
testcase_27 AC 50 ms
65,896 KB
testcase_28 AC 52 ms
69,180 KB
testcase_29 AC 51 ms
67,476 KB
testcase_30 AC 40 ms
55,512 KB
testcase_31 AC 41 ms
53,816 KB
testcase_32 AC 53 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
L=[10**9]*(n+1)
L[1]=1
q=deque([(1,1)])
while q:
    x,t=q.popleft()
    k=bin(x).count("1")
    for dk in [k,-k]:
      if 0<x+dk<=n and t+1<L[x+dk]:
        L[x+dk]=t+1
        q.append((x+dk,t+1))

print(L[n] if L[n]!=10**9 else -1)
0