結果

問題 No.23 技の選択
ユーザー mlihua09mlihua09
提出日時 2020-09-18 16:18:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-06-22 08:01:25
合計ジャッジ時間 2,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,888 KB
testcase_01 AC 39 ms
53,620 KB
testcase_02 AC 38 ms
53,752 KB
testcase_03 AC 39 ms
52,336 KB
testcase_04 AC 39 ms
52,768 KB
testcase_05 AC 39 ms
52,760 KB
testcase_06 AC 38 ms
52,380 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 39 ms
52,204 KB
testcase_09 AC 39 ms
53,080 KB
testcase_10 WA -
testcase_11 AC 40 ms
52,888 KB
testcase_12 AC 39 ms
53,304 KB
testcase_13 AC 38 ms
53,108 KB
testcase_14 AC 39 ms
52,404 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
52,552 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,176 KB
testcase_21 WA -
testcase_22 AC 39 ms
53,816 KB
testcase_23 AC 39 ms
52,612 KB
testcase_24 AC 38 ms
51,828 KB
testcase_25 AC 38 ms
53,496 KB
testcase_26 AC 38 ms
52,460 KB
testcase_27 AC 39 ms
52,544 KB
testcase_28 AC 39 ms
53,140 KB
testcase_29 AC 38 ms
51,928 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 37 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


H, A, D = map(int, input().split())

print(min([((H - A * i - 1) // D + 1) * 3 / 2 + i for i in range((H - 1) // A + 2)]))
0