結果

問題 No.1010 折って重ねて
ユーザー c-yanc-yan
提出日時 2020-03-20 21:32:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 280 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-15 04:20:52
合計ジャッジ時間 47,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,696 KB
testcase_01 AC 26 ms
21,504 KB
testcase_02 AC 25 ms
17,700 KB
testcase_03 AC 1,824 ms
21,760 KB
testcase_04 TLE -
testcase_05 AC 28 ms
21,376 KB
testcase_06 AC 28 ms
17,572 KB
testcase_07 AC 32 ms
21,376 KB
testcase_08 AC 26 ms
17,696 KB
testcase_09 AC 28 ms
17,572 KB
testcase_10 AC 35 ms
17,700 KB
testcase_11 AC 45 ms
21,504 KB
testcase_12 AC 28 ms
17,824 KB
testcase_13 AC 30 ms
17,828 KB
testcase_14 AC 33 ms
17,696 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,713 ms
10,752 KB
testcase_18 TLE -
testcase_19 AC 440 ms
10,752 KB
testcase_20 TLE -
testcase_21 AC 451 ms
10,752 KB
testcase_22 TLE -
testcase_23 AC 1,804 ms
10,880 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,098 ms
10,752 KB
testcase_28 AC 1,269 ms
10,752 KB
testcase_29 TLE -
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 28 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 TLE -
testcase_34 AC 152 ms
10,880 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 26 ms
10,880 KB
testcase_37 AC 42 ms
10,752 KB
testcase_38 WA -
testcase_39 AC 28 ms
10,752 KB
testcase_40 WA -
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 178 ms
10,880 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, h = map(int, input().split())

x *= 1000
y *= 1000

q = [(x, y, h, 0)]
result = 0
while q:
    x, y, h, r = q.pop()
    result = max(result, r)
    if x > h:
        q.append((x // 2, y, h * 2, r + 1))
    if y > h:
        q.append((x, y // 2, h * 2, r + 1))
print(result)
0