結果

問題 No.1010 折って重ねて
ユーザー jupirojupiro
提出日時 2020-03-20 21:31:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 240 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 163,200 KB
最終ジャッジ日時 2024-12-15 04:18:04
合計ジャッジ時間 11,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,600 KB
testcase_01 AC 32 ms
53,196 KB
testcase_02 AC 36 ms
51,940 KB
testcase_03 AC 212 ms
76,316 KB
testcase_04 TLE -
testcase_05 AC 43 ms
60,456 KB
testcase_06 AC 44 ms
63,060 KB
testcase_07 AC 56 ms
68,484 KB
testcase_08 AC 34 ms
53,340 KB
testcase_09 AC 45 ms
64,172 KB
testcase_10 AC 51 ms
68,080 KB
testcase_11 AC 75 ms
75,368 KB
testcase_12 AC 38 ms
59,256 KB
testcase_13 AC 48 ms
64,996 KB
testcase_14 AC 48 ms
68,204 KB
testcase_15 AC 886 ms
81,252 KB
testcase_16 AC 303 ms
76,560 KB
testcase_17 AC 176 ms
75,352 KB
testcase_18 AC 529 ms
78,264 KB
testcase_19 AC 114 ms
75,760 KB
testcase_20 AC 194 ms
75,832 KB
testcase_21 AC 93 ms
75,264 KB
testcase_22 AC 208 ms
75,784 KB
testcase_23 AC 187 ms
75,392 KB
testcase_24 AC 504 ms
77,912 KB
testcase_25 AC 205 ms
75,728 KB
testcase_26 AC 209 ms
76,040 KB
testcase_27 AC 148 ms
75,540 KB
testcase_28 AC 160 ms
75,576 KB
testcase_29 AC 317 ms
76,508 KB
testcase_30 AC 36 ms
52,688 KB
testcase_31 AC 42 ms
60,908 KB
testcase_32 AC 42 ms
60,408 KB
testcase_33 AC 303 ms
76,344 KB
testcase_34 AC 76 ms
75,264 KB
testcase_35 AC 39 ms
52,800 KB
testcase_36 AC 37 ms
52,236 KB
testcase_37 AC 52 ms
75,228 KB
testcase_38 AC 95 ms
75,076 KB
testcase_39 AC 45 ms
63,896 KB
testcase_40 AC 85 ms
75,196 KB
testcase_41 AC 34 ms
51,936 KB
testcase_42 AC 89 ms
75,604 KB
testcase_43 AC 337 ms
76,508 KB
testcase_44 AC 553 ms
77,428 KB
testcase_45 AC 61 ms
163,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(x, y, h):
    res = 0
    if(x > h):
        res = max(res, dfs(x, y*2, h*4) + 1)
    if(y > h):
        res = max(res, dfs(x*2, y, h*4) + 1)
    return res


x,y,h = map(int, input().split())
x *= 1000
y *= 1000
print(dfs(x,y,h))
0