結果

問題 No.3 ビットすごろく
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-07-04 11:49:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 70,372 KB
最終ジャッジ日時 2024-07-01 01:12:59
合計ジャッジ時間 2,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,856 KB
testcase_01 AC 40 ms
52,680 KB
testcase_02 AC 38 ms
52,756 KB
testcase_03 AC 54 ms
63,928 KB
testcase_04 AC 40 ms
53,296 KB
testcase_05 AC 54 ms
68,196 KB
testcase_06 AC 50 ms
63,800 KB
testcase_07 AC 49 ms
62,588 KB
testcase_08 AC 56 ms
65,744 KB
testcase_09 AC 56 ms
67,852 KB
testcase_10 AC 59 ms
68,672 KB
testcase_11 AC 57 ms
67,300 KB
testcase_12 AC 55 ms
66,220 KB
testcase_13 AC 49 ms
62,932 KB
testcase_14 AC 57 ms
68,724 KB
testcase_15 AC 57 ms
69,304 KB
testcase_16 AC 58 ms
69,520 KB
testcase_17 AC 59 ms
70,372 KB
testcase_18 AC 49 ms
62,296 KB
testcase_19 AC 58 ms
70,024 KB
testcase_20 AC 41 ms
53,020 KB
testcase_21 AC 40 ms
53,896 KB
testcase_22 AC 58 ms
68,728 KB
testcase_23 AC 59 ms
69,172 KB
testcase_24 AC 57 ms
69,840 KB
testcase_25 AC 58 ms
69,588 KB
testcase_26 AC 39 ms
53,652 KB
testcase_27 AC 49 ms
63,112 KB
testcase_28 AC 57 ms
68,972 KB
testcase_29 AC 58 ms
67,488 KB
testcase_30 AC 39 ms
52,432 KB
testcase_31 AC 38 ms
52,972 KB
testcase_32 AC 56 ms
66,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
went = []

l = [(1, 1)]
visited = {}
while(l):
    now, cost = l.pop(0)

    if now == N:
        print(cost)
        exit()

    bit_count = bin(now)[2:].count('1')
    forwarded = now + bit_count
    if forwarded <= N and not forwarded in visited:
        visited[forwarded] = True
        l.append((forwarded, cost + 1))

    backwarded = now - bit_count
    if 0 < backwarded and not backwarded in visited:
        visited[backwarded] = True
        l.append((backwarded, cost + 1))

print(-1)
0