結果

問題 No.1517 Party Location
ユーザー liny_tail
提出日時 2022-10-31 19:34:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-08 07:51:41
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if d == 0:
  print(0)
else:
  print(min([a * i + b * (d - i) for i in range(0, d+1, d)]))
0