結果

問題 No.1517 Party Location
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:23:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 13,632 ms
コンパイル使用メモリ 435,640 KB
実行使用メモリ 52,212 KB
最終ジャッジ日時 2024-06-11 11:19:22
合計ジャッジ時間 17,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
51,768 KB
testcase_01 AC 274 ms
51,728 KB
testcase_02 AC 280 ms
52,212 KB
testcase_03 AC 276 ms
52,148 KB
testcase_04 AC 274 ms
52,164 KB
testcase_05 AC 276 ms
51,940 KB
testcase_06 AC 274 ms
51,972 KB
testcase_07 AC 273 ms
52,060 KB
testcase_08 AC 404 ms
51,980 KB
testcase_09 AC 394 ms
52,096 KB
testcase_10 AC 363 ms
52,132 KB
testcase_11 AC 316 ms
51,840 KB
testcase_12 AC 271 ms
51,824 KB
testcase_13 AC 283 ms
52,208 KB
testcase_14 AC 282 ms
52,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val d = readLine()!!.toInt()
    val (a,b) = readLine()!!.split(" ").map { it.toInt() }
    val ans = (0..d).map { a*it + (d-it)*b }.minOrNull()
    println(ans)
}
0