結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,572 KB
testcase_01 AC 30 ms
21,504 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 1,403 ms
21,376 KB
testcase_04 TLE -
testcase_05 AC 32 ms
21,504 KB
testcase_06 AC 31 ms
17,572 KB
testcase_07 AC 33 ms
21,504 KB
testcase_08 AC 31 ms
17,572 KB
testcase_09 AC 33 ms
17,700 KB
testcase_10 AC 38 ms
17,572 KB
testcase_11 AC 44 ms
17,696 KB
testcase_12 AC 31 ms
17,440 KB
testcase_13 AC 33 ms
21,376 KB
testcase_14 AC 37 ms
17,440 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,324 ms
10,752 KB
testcase_18 TLE -
testcase_19 AC 337 ms
10,752 KB
testcase_20 AC 1,765 ms
10,752 KB
testcase_21 AC 355 ms
10,752 KB
testcase_22 AC 1,629 ms
10,752 KB
testcase_23 AC 1,346 ms
10,624 KB
testcase_24 TLE -
testcase_25 AC 1,630 ms
10,752 KB
testcase_26 AC 1,833 ms
10,624 KB
testcase_27 AC 808 ms
10,880 KB
testcase_28 AC 995 ms
10,752 KB
testcase_29 TLE -
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 32 ms
10,624 KB
testcase_32 AC 32 ms
10,752 KB
testcase_33 TLE -
testcase_34 AC 122 ms
10,624 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 43 ms
10,752 KB
testcase_38 WA -
testcase_39 AC 32 ms
10,752 KB
testcase_40 WA -
testcase_41 AC 31 ms
10,752 KB
testcase_42 AC 147 ms
10,624 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()
    if r > result:
        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