結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー face4face4
提出日時 2021-04-10 18:09:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 13,357 ms
コンパイル使用メモリ 436,272 KB
実行使用メモリ 72,632 KB
最終ジャッジ日時 2024-06-26 07:01:36
合計ジャッジ時間 22,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
55,288 KB
testcase_01 AC 335 ms
55,244 KB
testcase_02 AC 322 ms
52,152 KB
testcase_03 AC 318 ms
52,096 KB
testcase_04 AC 562 ms
72,632 KB
testcase_05 AC 341 ms
59,336 KB
testcase_06 AC 351 ms
55,448 KB
testcase_07 AC 564 ms
70,032 KB
testcase_08 AC 548 ms
71,508 KB
testcase_09 AC 545 ms
67,596 KB
testcase_10 AC 320 ms
56,960 KB
testcase_11 AC 321 ms
52,184 KB
testcase_12 AC 334 ms
55,224 KB
testcase_13 AC 343 ms
55,456 KB
testcase_14 AC 351 ms
55,504 KB
testcase_15 AC 347 ms
55,512 KB
testcase_16 AC 362 ms
55,584 KB
testcase_17 AC 326 ms
52,028 KB
testcase_18 AC 342 ms
55,412 KB
testcase_19 AC 348 ms
55,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: variable 'n' is never used
    val (n, m, x, y) = readLine()!!.split(" ").map { it.toInt() }
         ^

ソースコード

diff #

fun main() {
    val (n, m, x, y) = readLine()!!.split(" ").map { it.toInt() }
    val a = readLine()!!.split(" ").map { it.toLong() }
    a.filter { it > y }.sorted().reversed().apply {
        dropLast(0.coerceAtLeast(this.size - (m + 1))).let {
            if(it.isEmpty()){
                println(0)
            }else if (it.size == m+1 && it.last() >= x) {
                println("Handicapped")
            } else {
                println(it.dropLast(if(it.size==m+1) 1 else 0).sum())
            }
        }
    }
}
0