結果

問題 No.3 ビットすごろく
ユーザー KudeKude
提出日時 2020-09-03 06:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 69,916 KB
最終ジャッジ日時 2024-07-01 09:54:31
合計ジャッジ時間 3,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,500 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
55,084 KB
testcase_03 AC 55 ms
64,476 KB
testcase_04 AC 49 ms
62,808 KB
testcase_05 AC 54 ms
66,140 KB
testcase_06 AC 56 ms
65,868 KB
testcase_07 AC 51 ms
63,892 KB
testcase_08 AC 55 ms
66,384 KB
testcase_09 AC 56 ms
66,892 KB
testcase_10 AC 56 ms
68,632 KB
testcase_11 AC 55 ms
68,136 KB
testcase_12 AC 53 ms
66,724 KB
testcase_13 AC 53 ms
64,248 KB
testcase_14 AC 58 ms
67,760 KB
testcase_15 AC 57 ms
69,424 KB
testcase_16 AC 57 ms
69,312 KB
testcase_17 AC 58 ms
69,388 KB
testcase_18 AC 52 ms
64,804 KB
testcase_19 AC 58 ms
69,916 KB
testcase_20 AC 44 ms
56,036 KB
testcase_21 AC 43 ms
54,072 KB
testcase_22 AC 57 ms
69,096 KB
testcase_23 AC 57 ms
69,132 KB
testcase_24 AC 57 ms
69,732 KB
testcase_25 AC 55 ms
69,592 KB
testcase_26 AC 41 ms
53,796 KB
testcase_27 AC 52 ms
65,080 KB
testcase_28 AC 56 ms
68,280 KB
testcase_29 AC 54 ms
66,620 KB
testcase_30 AC 42 ms
54,712 KB
testcase_31 AC 41 ms
54,916 KB
testcase_32 AC 54 ms
66,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
dp = [-1] * (n + 1)
dp[1] = 1
q = deque()
q.append(1)
while q:
    i = q.popleft()
    dist = bin(i).count('1')
    for j in i - dist, i + dist:
        if 1 <= j <= n and dp[j] == -1:
            dp[j] = dp[i] + 1
            q.append(j)
print(dp[n])
0