結果

問題 No.3 ビットすごろく
ユーザー mahiromahiro
提出日時 2020-01-11 19:20:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-11-25 08:14:14
合計ジャッジ時間 80,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())

spaces = [float("inf")] * (N + 1)
bits = {i: str(bin(i))[2:].count("1") for i in range(N + 1)}
spaces[1] = 0

visited = [False] * (N + 1)


def dfs(i, p):
    if not 0 < i < N + 1:
        return None
    if visited[i]:
        return None
    visited[i] = True
    spaces[i] = min(spaces[i], p)
    dfs(i + bits[i], p+1)
    dfs(i - bits[i], p+1)
    visited[i] = False


dfs(1, 1)

ans = -1 if spaces[N] == float("inf") else spaces[N]
print(ans)
0