結果
問題 | No.1010 折って重ねて |
ユーザー | c-yan |
提出日時 | 2020-03-20 21:55:16 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 461 bytes |
コンパイル時間 | 493 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,504 KB |
最終ジャッジ日時 | 2024-12-15 05:35:48 |
合計ジャッジ時間 | 57,736 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,000 KB |
testcase_01 | AC | 30 ms
21,248 KB |
testcase_02 | AC | 29 ms
17,444 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 33 ms
21,248 KB |
testcase_06 | AC | 32 ms
17,572 KB |
testcase_07 | AC | 38 ms
21,248 KB |
testcase_08 | AC | 31 ms
17,440 KB |
testcase_09 | AC | 34 ms
21,248 KB |
testcase_10 | AC | 44 ms
17,572 KB |
testcase_11 | AC | 57 ms
21,248 KB |
testcase_12 | AC | 32 ms
17,572 KB |
testcase_13 | AC | 36 ms
21,248 KB |
testcase_14 | AC | 43 ms
17,568 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 702 ms
21,248 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 727 ms
21,376 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | AC | 1,729 ms
10,752 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 29 ms
10,752 KB |
testcase_31 | AC | 33 ms
10,624 KB |
testcase_32 | AC | 33 ms
10,624 KB |
testcase_33 | TLE | - |
testcase_34 | AC | 227 ms
10,624 KB |
testcase_35 | AC | 31 ms
10,624 KB |
testcase_36 | AC | 30 ms
10,624 KB |
testcase_37 | AC | 57 ms
10,752 KB |
testcase_38 | WA | - |
testcase_39 | AC | 35 ms
10,624 KB |
testcase_40 | WA | - |
testcase_41 | AC | 30 ms
10,624 KB |
testcase_42 | AC | 275 ms
10,624 KB |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | WA | - |
ソースコード
x, y, h = map(int, input().split()) x *= 1000 y *= 1000 calced = set() q = [(x, y, h, 0)] result = 0 while q: x, y, h, r = q.pop() if r > result: result = r if x > h and (x // 2, y, h, r) not in calced: calced.add((x // 2, y, h, r + 1)) q.append((x // 2, y, h * 2, r + 1)) if y > h and (x, y // 2, h, r) not in calced: calced.add((x, y // 2, h, r + 1)) q.append((x, y // 2, h * 2, r + 1)) print(result)