結果

問題 No.23 技の選択
ユーザー ntudantuda
提出日時 2024-10-22 23:36:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 79,712 KB
最終ジャッジ日時 2024-10-22 23:36:53
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,448 KB
testcase_01 AC 46 ms
55,032 KB
testcase_02 AC 45 ms
55,468 KB
testcase_03 AC 58 ms
67,852 KB
testcase_04 AC 59 ms
68,668 KB
testcase_05 AC 48 ms
56,972 KB
testcase_06 AC 46 ms
56,460 KB
testcase_07 AC 45 ms
55,308 KB
testcase_08 AC 44 ms
56,328 KB
testcase_09 AC 95 ms
79,712 KB
testcase_10 AC 45 ms
54,908 KB
testcase_11 AC 44 ms
55,624 KB
testcase_12 AC 45 ms
56,084 KB
testcase_13 AC 45 ms
55,504 KB
testcase_14 AC 45 ms
56,988 KB
testcase_15 AC 44 ms
55,284 KB
testcase_16 AC 45 ms
56,244 KB
testcase_17 AC 44 ms
55,340 KB
testcase_18 AC 44 ms
55,104 KB
testcase_19 AC 44 ms
55,400 KB
testcase_20 AC 46 ms
55,820 KB
testcase_21 AC 45 ms
55,184 KB
testcase_22 AC 43 ms
55,300 KB
testcase_23 AC 45 ms
56,652 KB
testcase_24 AC 45 ms
55,048 KB
testcase_25 AC 45 ms
55,388 KB
testcase_26 AC 44 ms
55,352 KB
testcase_27 AC 45 ms
56,420 KB
testcase_28 AC 45 ms
55,932 KB
testcase_29 AC 45 ms
56,012 KB
testcase_30 AC 48 ms
55,276 KB
testcase_31 AC 45 ms
56,096 KB
testcase_32 AC 44 ms
56,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10050)

from functools import lru_cache
@lru_cache(maxsize=10000)
def f(x):
    if x <= 0:
        return 0
    ret = 0
    ret += min(1 + f(x - A), 3 / 2 + f(x - D))
    return ret

H, A, D = map(int, input().split())
print(f(H))
0