結果

問題 No.1517 Party Location
ユーザー ryusukeryusuke
提出日時 2022-01-28 18:27:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 76,116 KB
最終ジャッジ日時 2023-09-02 04:18:31
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,248 KB
testcase_01 AC 71 ms
71,364 KB
testcase_02 AC 95 ms
76,096 KB
testcase_03 AC 76 ms
76,116 KB
testcase_04 AC 76 ms
76,064 KB
testcase_05 AC 77 ms
75,924 KB
testcase_06 AC 77 ms
76,024 KB
testcase_07 AC 74 ms
71,148 KB
testcase_08 AC 76 ms
75,972 KB
testcase_09 AC 77 ms
76,008 KB
testcase_10 AC 76 ms
75,956 KB
testcase_11 AC 77 ms
76,108 KB
testcase_12 AC 75 ms
71,400 KB
testcase_13 AC 78 ms
75,892 KB
testcase_14 AC 78 ms
75,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
a, b = map(int, input().split())

ans = []
for i in range(d + 1):
    ans.append(i * a + (d - i) * b)

print(min(ans))
0