結果

問題 No.23 技の選択
ユーザー noriocnorioc
提出日時 2024-10-21 01:33:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 78,304 KB
最終ジャッジ日時 2024-10-21 01:33:39
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,084 KB
testcase_01 AC 43 ms
55,968 KB
testcase_02 AC 42 ms
55,740 KB
testcase_03 AC 53 ms
65,448 KB
testcase_04 AC 50 ms
65,504 KB
testcase_05 AC 43 ms
56,632 KB
testcase_06 AC 44 ms
56,084 KB
testcase_07 AC 41 ms
55,436 KB
testcase_08 AC 43 ms
55,604 KB
testcase_09 AC 74 ms
78,304 KB
testcase_10 AC 43 ms
55,412 KB
testcase_11 AC 47 ms
56,384 KB
testcase_12 AC 42 ms
55,608 KB
testcase_13 AC 42 ms
55,428 KB
testcase_14 AC 43 ms
55,152 KB
testcase_15 AC 42 ms
56,152 KB
testcase_16 AC 42 ms
55,220 KB
testcase_17 AC 44 ms
56,236 KB
testcase_18 AC 45 ms
56,268 KB
testcase_19 AC 43 ms
55,444 KB
testcase_20 AC 42 ms
56,492 KB
testcase_21 AC 41 ms
55,296 KB
testcase_22 AC 44 ms
55,356 KB
testcase_23 AC 42 ms
54,500 KB
testcase_24 AC 44 ms
55,104 KB
testcase_25 AC 44 ms
55,692 KB
testcase_26 AC 44 ms
56,096 KB
testcase_27 AC 43 ms
55,124 KB
testcase_28 AC 44 ms
54,908 KB
testcase_29 AC 42 ms
55,028 KB
testcase_30 AC 42 ms
55,492 KB
testcase_31 AC 42 ms
55,808 KB
testcase_32 AC 42 ms
55,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
import sys
sys.setrecursionlimit(10 ** 6)


@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