結果

問題 No.1010 折って重ねて
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 57,888 KB
最終ジャッジ日時 2024-06-22 02:42:50
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,540 KB
testcase_01 AC 37 ms
56,176 KB
testcase_02 AC 37 ms
55,360 KB
testcase_03 AC 39 ms
57,012 KB
testcase_04 AC 42 ms
57,220 KB
testcase_05 AC 36 ms
55,636 KB
testcase_06 AC 37 ms
55,492 KB
testcase_07 AC 37 ms
56,020 KB
testcase_08 AC 37 ms
56,504 KB
testcase_09 AC 38 ms
56,616 KB
testcase_10 AC 39 ms
56,016 KB
testcase_11 AC 39 ms
55,692 KB
testcase_12 AC 41 ms
56,344 KB
testcase_13 AC 46 ms
55,108 KB
testcase_14 AC 38 ms
55,776 KB
testcase_15 AC 41 ms
57,340 KB
testcase_16 AC 39 ms
56,316 KB
testcase_17 AC 39 ms
56,384 KB
testcase_18 AC 41 ms
56,504 KB
testcase_19 AC 39 ms
56,772 KB
testcase_20 AC 39 ms
56,136 KB
testcase_21 AC 39 ms
56,852 KB
testcase_22 AC 40 ms
56,240 KB
testcase_23 AC 39 ms
55,924 KB
testcase_24 AC 39 ms
55,688 KB
testcase_25 AC 38 ms
57,480 KB
testcase_26 AC 40 ms
56,504 KB
testcase_27 AC 38 ms
56,504 KB
testcase_28 AC 39 ms
56,280 KB
testcase_29 AC 40 ms
57,804 KB
testcase_30 AC 40 ms
56,908 KB
testcase_31 AC 37 ms
55,600 KB
testcase_32 AC 38 ms
55,552 KB
testcase_33 AC 41 ms
56,944 KB
testcase_34 AC 40 ms
56,316 KB
testcase_35 AC 39 ms
55,812 KB
testcase_36 AC 40 ms
56,792 KB
testcase_37 AC 40 ms
55,628 KB
testcase_38 AC 40 ms
57,616 KB
testcase_39 AC 40 ms
55,692 KB
testcase_40 AC 39 ms
56,032 KB
testcase_41 AC 39 ms
56,024 KB
testcase_42 AC 45 ms
56,660 KB
testcase_43 AC 40 ms
57,888 KB
testcase_44 AC 41 ms
56,320 KB
testcase_45 AC 40 ms
55,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

@lru_cache(maxsize=None)
def solve(x,y):
    retu=0
    if X>H*2**(x+x+y):
        retu=max(retu,solve(x+1,y)+1)
    if Y>H*2**(x+y+y):
        retu=max(retu,solve(x,y+1)+1)
    return retu

X,Y,H=map(int,input().split())
X*=1000
Y*=1000
ans=solve(0,0)
print(ans)
0