結果

問題 No.1380 Borderline
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-17 17:05:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 13,673 ms
コンパイル使用メモリ 442,152 KB
実行使用メモリ 55,724 KB
最終ジャッジ日時 2024-09-14 03:40:43
合計ジャッジ時間 30,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
55,312 KB
testcase_01 AC 336 ms
55,400 KB
testcase_02 AC 311 ms
52,084 KB
testcase_03 AC 338 ms
55,552 KB
testcase_04 AC 336 ms
55,568 KB
testcase_05 AC 317 ms
52,040 KB
testcase_06 AC 335 ms
55,216 KB
testcase_07 AC 336 ms
55,400 KB
testcase_08 AC 336 ms
55,520 KB
testcase_09 AC 333 ms
55,416 KB
testcase_10 AC 334 ms
55,528 KB
testcase_11 AC 331 ms
55,416 KB
testcase_12 AC 334 ms
55,436 KB
testcase_13 AC 334 ms
55,404 KB
testcase_14 AC 342 ms
55,724 KB
testcase_15 AC 344 ms
55,504 KB
testcase_16 AC 345 ms
55,600 KB
testcase_17 AC 347 ms
55,500 KB
testcase_18 AC 342 ms
55,624 KB
testcase_19 AC 343 ms
55,636 KB
testcase_20 AC 340 ms
55,656 KB
testcase_21 AC 342 ms
55,604 KB
testcase_22 AC 340 ms
55,492 KB
testcase_23 AC 345 ms
55,584 KB
testcase_24 AC 347 ms
55,404 KB
testcase_25 AC 338 ms
55,568 KB
testcase_26 AC 342 ms
55,560 KB
testcase_27 AC 343 ms
55,628 KB
testcase_28 AC 339 ms
55,620 KB
testcase_29 AC 341 ms
55,544 KB
testcase_30 AC 341 ms
55,392 KB
testcase_31 AC 340 ms
55,400 KB
testcase_32 AC 344 ms
55,500 KB
testcase_33 AC 343 ms
55,392 KB
testcase_34 AC 339 ms
55,404 KB
testcase_35 AC 341 ms
55,428 KB
testcase_36 AC 350 ms
55,552 KB
testcase_37 AC 346 ms
55,584 KB
testcase_38 AC 345 ms
55,588 KB
testcase_39 AC 345 ms
55,580 KB
testcase_40 AC 342 ms
55,440 KB
testcase_41 AC 340 ms
55,468 KB
testcase_42 AC 341 ms
55,612 KB
testcase_43 AC 345 ms
55,596 KB
testcase_44 AC 333 ms
51,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3: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() }
    val p = readLine()!!.split(" ").map { it.toInt() }.groupingBy { it }.eachCount().map { it.key to it.value }.toTypedArray()

    p.sortByDescending { it.first }
    var ans = 0
    p.takeWhile { if (ans + it.second <= k) {ans+=it.second; true} else false }
    println(ans)
}
0