結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,108 KB
testcase_01 AC 45 ms
55,188 KB
testcase_02 AC 46 ms
55,384 KB
testcase_03 AC 47 ms
57,208 KB
testcase_04 AC 51 ms
56,820 KB
testcase_05 AC 47 ms
56,540 KB
testcase_06 AC 50 ms
55,292 KB
testcase_07 AC 46 ms
55,776 KB
testcase_08 AC 47 ms
55,600 KB
testcase_09 AC 48 ms
56,596 KB
testcase_10 AC 47 ms
56,812 KB
testcase_11 AC 46 ms
55,228 KB
testcase_12 AC 45 ms
56,492 KB
testcase_13 AC 45 ms
56,024 KB
testcase_14 AC 45 ms
56,448 KB
testcase_15 AC 48 ms
56,824 KB
testcase_16 AC 46 ms
56,176 KB
testcase_17 AC 46 ms
56,672 KB
testcase_18 AC 47 ms
56,340 KB
testcase_19 AC 45 ms
55,688 KB
testcase_20 AC 45 ms
57,496 KB
testcase_21 AC 44 ms
55,896 KB
testcase_22 AC 45 ms
56,980 KB
testcase_23 AC 47 ms
56,412 KB
testcase_24 AC 46 ms
56,624 KB
testcase_25 AC 46 ms
56,616 KB
testcase_26 AC 46 ms
55,684 KB
testcase_27 AC 46 ms
56,728 KB
testcase_28 AC 47 ms
56,108 KB
testcase_29 AC 46 ms
56,880 KB
testcase_30 AC 45 ms
55,372 KB
testcase_31 AC 44 ms
55,296 KB
testcase_32 AC 45 ms
56,524 KB
testcase_33 AC 47 ms
56,060 KB
testcase_34 AC 46 ms
56,716 KB
testcase_35 AC 47 ms
56,340 KB
testcase_36 AC 45 ms
55,408 KB
testcase_37 AC 46 ms
55,476 KB
testcase_38 AC 46 ms
56,964 KB
testcase_39 AC 45 ms
55,400 KB
testcase_40 AC 47 ms
56,056 KB
testcase_41 AC 47 ms
55,428 KB
testcase_42 AC 47 ms
55,288 KB
testcase_43 AC 47 ms
57,212 KB
testcase_44 AC 47 ms
57,140 KB
testcase_45 AC 45 ms
55,420 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