結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー バカらっくバカらっく
提出日時 2019-09-25 21:26:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 575 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 13,541 ms
コンパイル使用メモリ 433,192 KB
実行使用メモリ 68,024 KB
最終ジャッジ日時 2024-09-22 16:04:20
合計ジャッジ時間 24,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
57,296 KB
testcase_01 AC 573 ms
68,016 KB
testcase_02 AC 311 ms
57,032 KB
testcase_03 AC 315 ms
56,976 KB
testcase_04 AC 311 ms
57,072 KB
testcase_05 AC 539 ms
67,968 KB
testcase_06 AC 318 ms
57,088 KB
testcase_07 AC 314 ms
57,028 KB
testcase_08 AC 316 ms
57,096 KB
testcase_09 AC 311 ms
57,108 KB
testcase_10 AC 308 ms
57,032 KB
testcase_11 AC 310 ms
56,972 KB
testcase_12 AC 319 ms
57,060 KB
testcase_13 AC 312 ms
57,060 KB
testcase_14 AC 548 ms
63,740 KB
testcase_15 AC 470 ms
59,852 KB
testcase_16 AC 567 ms
65,752 KB
testcase_17 AC 465 ms
60,012 KB
testcase_18 AC 565 ms
65,840 KB
testcase_19 AC 539 ms
63,728 KB
testcase_20 AC 575 ms
67,932 KB
testcase_21 AC 341 ms
57,244 KB
testcase_22 AC 477 ms
59,928 KB
testcase_23 AC 553 ms
67,904 KB
testcase_24 AC 575 ms
68,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:2:9: warning: variable 'answerCount' is never used
    val answerCount = readLine()!!.toInt()
        ^
Main.kt:4:85: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Map.Entry<Int, Int>
    val ans = countMap.maxBy { it.value }.let {a -> countMap.filter { it.value ==  a!!.value} }.maxBy { it.key }!!.key
                                                                                    ^
Main.kt:4:113: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Map.Entry<Int, Int>
    val ans = countMap.maxBy { it.value }.let {a -> countMap.filter { it.value ==  a!!.value} }.maxBy { it.key }!!.key
                                                                                                                ^

ソースコード

diff #

fun main(args:Array<String>) {
    val answerCount = readLine()!!.toInt()
    val countMap = readLine()!!.split(" ").map { it.toInt() }.let { a-> a.toSet().map {b-> b to a.count { b == it } } }.toMap()
    val ans = countMap.maxBy { it.value }.let {a -> countMap.filter { it.value ==  a!!.value} }.maxBy { it.key }!!.key
    println(ans)
}

0