結果

問題 No.1046 Fruits Rush
ユーザー face4face4
提出日時 2021-04-10 23:44:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 11,962 ms
コンパイル使用メモリ 438,808 KB
実行使用メモリ 60,712 KB
最終ジャッジ日時 2024-06-26 20:50:20
合計ジャッジ時間 18,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
60,452 KB
testcase_01 AC 321 ms
60,424 KB
testcase_02 AC 320 ms
60,484 KB
testcase_03 AC 321 ms
60,520 KB
testcase_04 AC 325 ms
60,428 KB
testcase_05 AC 328 ms
60,460 KB
testcase_06 AC 325 ms
60,428 KB
testcase_07 AC 326 ms
60,712 KB
testcase_08 AC 325 ms
60,708 KB
testcase_09 AC 323 ms
60,308 KB
testcase_10 AC 325 ms
60,536 KB
testcase_11 AC 325 ms
60,376 KB
testcase_12 AC 327 ms
60,480 KB
testcase_13 AC 325 ms
60,420 KB
testcase_14 AC 322 ms
60,392 KB
testcase_15 AC 319 ms
60,240 KB
testcase_16 AC 307 ms
57,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: variable 'n' is never used
    val (n, k) = readLine()!!.split(" ").map{it.toInt()}
         ^

ソースコード

diff #

fun main() {
    val (n, k) = readLine()!!.split(" ").map{it.toInt()}
    println(readLine()!!.split(" ").map{it.toInt()}.sorted().reversed().take(k).let{
        if(it.first() < 0)  it.first()
        else                it.sumOf{it2 -> 0.coerceAtLeast(it2)}
    })
}
0