結果

問題 No.23 技の選択
ユーザー dangodango
提出日時 2023-07-09 15:26:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 53,800 KB
最終ジャッジ日時 2024-07-23 12:23:59
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,408 KB
testcase_01 AC 38 ms
53,256 KB
testcase_02 AC 37 ms
53,556 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 38 ms
52,236 KB
testcase_05 AC 37 ms
53,128 KB
testcase_06 AC 36 ms
53,068 KB
testcase_07 AC 37 ms
52,764 KB
testcase_08 AC 36 ms
52,976 KB
testcase_09 AC 37 ms
52,412 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,260 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
53,008 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 35 ms
52,264 KB
testcase_26 AC 36 ms
52,700 KB
testcase_27 AC 35 ms
53,312 KB
testcase_28 AC 36 ms
51,684 KB
testcase_29 AC 36 ms
52,244 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, a, d = map(int, input().split())
print(min([na + nd * (3 / 2) for na in range(0, int(h / a) + 1) for nd in [int((max(h - a * na, 0) + d - 1) / d)]]))
0