結果

問題 No.23 技の選択
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-11 04:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-25 01:05:03
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,040 KB
testcase_01 AC 51 ms
55,680 KB
testcase_02 AC 52 ms
55,168 KB
testcase_03 AC 63 ms
63,360 KB
testcase_04 AC 58 ms
61,440 KB
testcase_05 AC 57 ms
61,952 KB
testcase_06 AC 69 ms
64,256 KB
testcase_07 AC 60 ms
62,976 KB
testcase_08 AC 70 ms
65,408 KB
testcase_09 AC 61 ms
63,104 KB
testcase_10 AC 60 ms
63,104 KB
testcase_11 AC 51 ms
55,808 KB
testcase_12 AC 57 ms
61,824 KB
testcase_13 AC 61 ms
63,104 KB
testcase_14 AC 57 ms
62,080 KB
testcase_15 AC 57 ms
61,952 KB
testcase_16 AC 53 ms
55,424 KB
testcase_17 AC 57 ms
62,080 KB
testcase_18 AC 60 ms
62,720 KB
testcase_19 AC 63 ms
64,256 KB
testcase_20 AC 56 ms
61,696 KB
testcase_21 AC 57 ms
61,952 KB
testcase_22 AC 63 ms
64,080 KB
testcase_23 AC 57 ms
61,440 KB
testcase_24 AC 52 ms
55,680 KB
testcase_25 AC 63 ms
64,000 KB
testcase_26 AC 59 ms
62,208 KB
testcase_27 AC 63 ms
63,232 KB
testcase_28 AC 59 ms
62,848 KB
testcase_29 AC 61 ms
63,552 KB
testcase_30 AC 60 ms
62,720 KB
testcase_31 AC 60 ms
63,360 KB
testcase_32 AC 61 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

H,A,D = map(int,input().split())
E = [0]*(H+1)

for i in range(1,H+1):
    
    E[i] = min(1+E[max(0,i-A)],1.5+E[max(0,i-D)])
    
print(E[H])
0