結果
問題 | No.3 ビットすごろく |
ユーザー | kanoekakihito |
提出日時 | 2016-09-23 22:28:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 44,160 KB |
最終ジャッジ日時 | 2024-11-17 20:06:00 |
合計ジャッジ時間 | 127,472 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
30,464 KB |
testcase_01 | AC | 24 ms
17,696 KB |
testcase_02 | AC | 25 ms
32,000 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 119 ms
38,784 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 643 ms
41,472 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 3,235 ms
44,160 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 894 ms
42,496 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 66 ms
11,648 KB |
testcase_21 | AC | 25 ms
10,752 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 24 ms
10,752 KB |
testcase_27 | AC | 1,631 ms
18,304 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 27 ms
10,752 KB |
testcase_31 | AC | 28 ms
11,008 KB |
testcase_32 | TLE | - |
ソースコード
n = int(input()) prev = [[1, []]] fastest = dict() end_flag = False c = 1 while len(prev) != 0: next = [] for p in prev: if p[0] == n: print(c) end_flag = True break b = bin(p[0])[2:].count("1") for i in range(2): next_place = p[0] + b * (-1) ** i if next_place not in fastest or fastest[next_place] < c: if 1 <= next_place <= n and not next_place in p[1]: fastest[next_place] = c next.append([next_place, p[1] + [p[0]]]) if end_flag: break c += 1 prev = sorted(next, key = lambda x: x[0], reverse = True) else: print(-1)