結果

問題 No.2138 Add Bacon
ユーザー 箱星箱星
提出日時 2022-11-23 22:18:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 11,013 ms
コンパイル使用メモリ 429,508 KB
実行使用メモリ 57,044 KB
最終ジャッジ日時 2024-09-25 02:30:38
合計ジャッジ時間 20,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
56,724 KB
testcase_01 AC 314 ms
56,952 KB
testcase_02 AC 314 ms
56,848 KB
testcase_03 AC 315 ms
56,768 KB
testcase_04 AC 310 ms
57,044 KB
testcase_05 AC 311 ms
56,980 KB
testcase_06 AC 309 ms
56,780 KB
testcase_07 AC 314 ms
56,940 KB
testcase_08 AC 311 ms
56,732 KB
testcase_09 AC 309 ms
56,720 KB
testcase_10 AC 309 ms
56,768 KB
testcase_11 AC 308 ms
56,728 KB
testcase_12 AC 310 ms
56,768 KB
testcase_13 AC 310 ms
56,788 KB
testcase_14 AC 309 ms
56,868 KB
testcase_15 AC 310 ms
56,848 KB
testcase_16 AC 308 ms
56,784 KB
testcase_17 AC 312 ms
56,844 KB
testcase_18 AC 313 ms
56,980 KB
testcase_19 AC 308 ms
56,756 KB
testcase_20 AC 308 ms
56,804 KB
testcase_21 AC 309 ms
56,832 KB
testcase_22 AC 312 ms
56,748 KB
testcase_23 AC 318 ms
56,880 KB
testcase_24 AC 315 ms
56,852 KB
testcase_25 AC 314 ms
57,028 KB
testcase_26 AC 311 ms
57,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b, c, d, e) = readLine()!!.split(" ").map { it.toInt() }
    println(maxOf(a - b, a - b + c * (d - e)))
}
0