結果

問題 No.1517 Party Location
ユーザー pypypymipypypymi
提出日時 2022-02-19 14:06:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 59,288 KB
最終ジャッジ日時 2024-06-29 10:23:30
合計ジャッジ時間 1,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,076 KB
testcase_01 AC 32 ms
51,952 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
58,008 KB
testcase_05 AC 35 ms
58,900 KB
testcase_06 AC 36 ms
58,232 KB
testcase_07 AC 33 ms
52,432 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 33 ms
52,092 KB
testcase_13 WA -
testcase_14 AC 36 ms
57,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
a,b = map(int,input().split())
min_val = 1000*1000
for x in range(0,d+1):
    if  x*a+(d-x)*b<min_val:
        min_val=x*a+(d-x)*b
print(min_val)
    
0