結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー face4face4
提出日時 2021-04-10 18:07:39
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 14,096 ms
コンパイル使用メモリ 440,328 KB
実行使用メモリ 72,600 KB
最終ジャッジ日時 2024-06-26 06:58:51
合計ジャッジ時間 23,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
55,144 KB
testcase_01 AC 332 ms
54,948 KB
testcase_02 AC 323 ms
51,688 KB
testcase_03 AC 322 ms
51,632 KB
testcase_04 AC 574 ms
72,600 KB
testcase_05 WA -
testcase_06 AC 347 ms
55,104 KB
testcase_07 AC 565 ms
69,992 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 319 ms
51,892 KB
testcase_11 AC 324 ms
52,016 KB
testcase_12 AC 330 ms
55,104 KB
testcase_13 AC 336 ms
55,080 KB
testcase_14 AC 344 ms
55,376 KB
testcase_15 AC 357 ms
55,204 KB
testcase_16 AC 368 ms
55,224 KB
testcase_17 AC 325 ms
51,708 KB
testcase_18 WA -
testcase_19 AC 338 ms
55,224 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