結果

問題 No.3 ビットすごろく
ユーザー mahiromahiro
提出日時 2020-01-11 19:19:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 162,188 KB
最終ジャッジ日時 2024-11-25 08:12:01
合計ジャッジ時間 165,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
162,188 KB
testcase_01 AC 33 ms
146,228 KB
testcase_02 AC 39 ms
152,548 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 36 ms
151,340 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,482 ms
82,192 KB
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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