結果

問題 No.3 ビットすごろく
ユーザー にゃんにゃん
提出日時 2022-02-13 03:22:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 10,776 KB
実行使用メモリ 9,332 KB
最終ジャッジ日時 2023-09-11 15:16:10
合計ジャッジ時間 9,223 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 WA -
testcase_19 OLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 WA -
testcase_27 WA -
testcase_28 OLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
cost = [-1] * (N + 1)
cost[1] = 1
que = deque([1])

while que:
    print(que)
    a = que.pop()
    b = bin(a).count('1')

    if a - b > 0 and cost[a - b] == -1:
        cost[a - b] = cost[a] + 1
        que.append(a - b)
    if a + b <= N and cost[a + b] == -1:
        cost[a + b] = cost[a] + 1
        que.append(a + b)

print(cost[N])
0