結果

問題 No.1517 Party Location
ユーザー fukafukatanifukafukatani
提出日時 2021-06-21 22:55:17
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 855 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 12,958 ms
コンパイル使用メモリ 264,848 KB
実行使用メモリ 64,180 KB
最終ジャッジ日時 2024-06-11 11:16:51
合計ジャッジ時間 26,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 828 ms
63,696 KB
testcase_01 AC 830 ms
63,668 KB
testcase_02 AC 853 ms
64,136 KB
testcase_03 AC 828 ms
63,788 KB
testcase_04 AC 825 ms
63,600 KB
testcase_05 AC 838 ms
63,776 KB
testcase_06 AC 836 ms
63,620 KB
testcase_07 AC 844 ms
63,536 KB
testcase_08 AC 855 ms
63,744 KB
testcase_09 AC 853 ms
64,088 KB
testcase_10 AC 841 ms
63,972 KB
testcase_11 AC 836 ms
63,852 KB
testcase_12 AC 850 ms
63,584 KB
testcase_13 AC 852 ms
64,180 KB
testcase_14 AC 846 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val d = sc.nextInt
  val a, b = sc.nextInt
  val ans = (0 to d).map(_ * (a - b) + d  * b).min
  println(ans)
}
0