結果
問題 | No.3 ビットすごろく |
ユーザー | ic-eguci |
提出日時 | 2019-01-31 15:18:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 920 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 80,768 KB |
最終ジャッジ日時 | 2024-11-15 18:57:06 |
合計ジャッジ時間 | 83,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
80,768 KB |
testcase_01 | AC | 33 ms
73,088 KB |
testcase_02 | AC | 29 ms
17,568 KB |
testcase_03 | AC | 30 ms
75,776 KB |
testcase_04 | AC | 452 ms
78,208 KB |
testcase_05 | AC | 29 ms
73,344 KB |
testcase_06 | AC | 29 ms
17,700 KB |
testcase_07 | AC | 2,055 ms
42,020 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 30 ms
17,704 KB |
testcase_13 | AC | 30 ms
10,880 KB |
testcase_14 | AC | 29 ms
10,880 KB |
testcase_15 | AC | 30 ms
10,752 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 2,657 ms
42,368 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 246 ms
13,568 KB |
testcase_21 | AC | 29 ms
10,752 KB |
testcase_22 | AC | 30 ms
10,880 KB |
testcase_23 | AC | 29 ms
10,624 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 29 ms
10,752 KB |
testcase_27 | AC | 4,192 ms
59,392 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 41 ms
10,752 KB |
testcase_31 | AC | 53 ms
11,008 KB |
testcase_32 | TLE | - |
ソースコード
bitcount = {2:1, 6:2, 14:3, 30:4, 62:5, 126:6, 254:7, 510:8, 1022:9, 2046:10, 4094:11, 8190:12, 16382:13, } def get_max_bitcount(n): for i in bitcount: if n <= i: return bitcount[i] def foo(N): def get_reachable(st): reachable = set([]) for l in st: for i in range(1, get_max_bitcount(l)+2): if i == bin(l-i).count('1'): if (l-i) >= 1: reachable.add(l-i) if i == bin(l+i).count('1'): if (l+i) <= N: reachable.add(l+i) return reachable def bar(st): nonlocal count count += 1 if not st: return -1 if 1 in st: return count return bar(get_reachable(st)) if N == 1: return 1 count = 1 return bar(get_reachable(set([N]))) print(foo(int(input())))