結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー バカらっくバカらっく
提出日時 2021-11-10 10:09:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 540 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 12,476 ms
コンパイル使用メモリ 434,320 KB
実行使用メモリ 63,040 KB
最終ジャッジ日時 2024-11-20 18:58:12
合計ジャッジ時間 25,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
52,340 KB
testcase_01 AC 540 ms
62,740 KB
testcase_02 AC 319 ms
51,960 KB
testcase_03 AC 320 ms
51,656 KB
testcase_04 AC 318 ms
51,972 KB
testcase_05 AC 506 ms
63,040 KB
testcase_06 AC 280 ms
51,724 KB
testcase_07 AC 275 ms
51,836 KB
testcase_08 AC 280 ms
51,648 KB
testcase_09 AC 280 ms
51,484 KB
testcase_10 AC 278 ms
51,872 KB
testcase_11 AC 276 ms
51,636 KB
testcase_12 AC 283 ms
51,884 KB
testcase_13 AC 300 ms
51,708 KB
testcase_14 AC 493 ms
59,316 KB
testcase_15 AC 439 ms
54,392 KB
testcase_16 AC 512 ms
61,148 KB
testcase_17 AC 417 ms
54,432 KB
testcase_18 AC 510 ms
60,692 KB
testcase_19 AC 496 ms
58,908 KB
testcase_20 AC 521 ms
62,976 KB
testcase_21 AC 334 ms
52,180 KB
testcase_22 AC 456 ms
55,324 KB
testcase_23 AC 525 ms
62,332 KB
testcase_24 AC 518 ms
62,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val l = readLine()!!.split(" ").map { it.toInt() }
    val cnt = mutableMapOf<Int,Int>()
    l.forEach { cnt[it] = (cnt[it]?:0) + 1 }
    val ans = cnt.let { cnt.maxOf { it.value }.let { m -> cnt.filter { it.value == m }.maxOf { it.key } } }
    println(ans)
}
0