結果

問題 No.23 技の選択
ユーザー noriocnorioc
提出日時 2024-10-21 01:32:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 265 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 78,584 KB
最終ジャッジ日時 2024-10-21 01:33:01
合計ジャッジ時間 3,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,720 KB
testcase_01 AC 47 ms
56,588 KB
testcase_02 AC 43 ms
55,116 KB
testcase_03 RE -
testcase_04 AC 52 ms
65,060 KB
testcase_05 AC 45 ms
56,920 KB
testcase_06 AC 45 ms
56,676 KB
testcase_07 AC 44 ms
55,124 KB
testcase_08 AC 43 ms
55,124 KB
testcase_09 AC 75 ms
78,364 KB
testcase_10 AC 43 ms
54,972 KB
testcase_11 AC 43 ms
54,844 KB
testcase_12 AC 44 ms
55,940 KB
testcase_13 AC 43 ms
55,764 KB
testcase_14 AC 43 ms
55,700 KB
testcase_15 AC 43 ms
55,620 KB
testcase_16 AC 43 ms
55,576 KB
testcase_17 AC 48 ms
56,008 KB
testcase_18 AC 43 ms
56,016 KB
testcase_19 AC 44 ms
55,048 KB
testcase_20 AC 42 ms
55,624 KB
testcase_21 AC 42 ms
55,540 KB
testcase_22 AC 44 ms
54,864 KB
testcase_23 AC 44 ms
54,980 KB
testcase_24 AC 44 ms
55,232 KB
testcase_25 AC 44 ms
55,168 KB
testcase_26 AC 46 ms
55,060 KB
testcase_27 AC 44 ms
56,388 KB
testcase_28 AC 45 ms
55,056 KB
testcase_29 AC 43 ms
55,440 KB
testcase_30 AC 43 ms
54,904 KB
testcase_31 AC 44 ms
54,784 KB
testcase_32 AC 44 ms
54,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache


@cache
def f(h) -> float:
    if h <= 0: return 0

    # 通常攻撃
    res = f(h - A) + 1
    # 必殺技
    res = min(res, f(h - D) + 3/2)

    return res


INF = 1 << 60
H, A, D = map(int, input().split())

ans = f(H)
print(ans)
0