結果

問題 No.143 豆
ユーザー da_louisda_louis
提出日時 2020-02-07 00:44:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 1,000 ms
コード長 275 bytes
コンパイル時間 13,258 ms
コンパイル使用メモリ 436,996 KB
実行使用メモリ 57,160 KB
最終ジャッジ日時 2024-07-23 11:26:05
合計ジャッジ時間 19,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
56,972 KB
testcase_01 AC 323 ms
57,004 KB
testcase_02 AC 319 ms
57,160 KB
testcase_03 AC 323 ms
57,140 KB
testcase_04 AC 320 ms
56,964 KB
testcase_05 AC 321 ms
57,092 KB
testcase_06 AC 321 ms
57,092 KB
testcase_07 AC 325 ms
57,016 KB
testcase_08 AC 318 ms
56,924 KB
testcase_09 AC 320 ms
57,100 KB
testcase_10 AC 327 ms
57,044 KB
testcase_11 AC 323 ms
57,012 KB
testcase_12 AC 318 ms
56,956 KB
testcase_13 AC 319 ms
57,156 KB
testcase_14 AC 326 ms
57,116 KB
testcase_15 AC 335 ms
57,160 KB
testcase_16 AC 318 ms
56,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:16: warning: variable 'f' is never used
    val (k, n, f) = readLine()!!.split(' ').map { it.toInt() }
               ^

ソースコード

diff #

fun main(args: Array<String>) {
    p361()
}

fun p361() {
    val (k, n, f) = readLine()!!.split(' ').map { it.toInt() }
    val aList = readLine()!!.split(' ').map { it.toInt() }

    val answer = (k * n - aList.sum()).let { if (it < 0) -1 else it }

    println(answer)
}
0