結果

問題 No.23 技の選択
ユーザー ntudantuda
提出日時 2024-10-22 23:35:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 223 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 79,228 KB
最終ジャッジ日時 2024-10-22 23:35:15
合計ジャッジ時間 3,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,696 KB
testcase_01 AC 45 ms
55,652 KB
testcase_02 AC 47 ms
55,700 KB
testcase_03 RE -
testcase_04 AC 65 ms
66,048 KB
testcase_05 AC 48 ms
58,252 KB
testcase_06 AC 46 ms
55,292 KB
testcase_07 AC 46 ms
55,540 KB
testcase_08 AC 47 ms
56,344 KB
testcase_09 AC 89 ms
79,228 KB
testcase_10 AC 47 ms
54,500 KB
testcase_11 AC 46 ms
55,308 KB
testcase_12 AC 77 ms
55,700 KB
testcase_13 AC 45 ms
55,752 KB
testcase_14 AC 46 ms
54,984 KB
testcase_15 AC 46 ms
56,324 KB
testcase_16 AC 47 ms
55,376 KB
testcase_17 AC 48 ms
54,708 KB
testcase_18 AC 47 ms
55,316 KB
testcase_19 AC 46 ms
55,304 KB
testcase_20 AC 47 ms
55,676 KB
testcase_21 AC 45 ms
55,252 KB
testcase_22 AC 45 ms
55,756 KB
testcase_23 AC 44 ms
55,436 KB
testcase_24 AC 45 ms
54,660 KB
testcase_25 AC 47 ms
55,868 KB
testcase_26 AC 47 ms
54,920 KB
testcase_27 AC 46 ms
55,340 KB
testcase_28 AC 45 ms
55,048 KB
testcase_29 AC 45 ms
55,536 KB
testcase_30 AC 45 ms
55,696 KB
testcase_31 AC 46 ms
55,492 KB
testcase_32 AC 73 ms
55,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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