結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 12:15:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 13,225 ms
コンパイル使用メモリ 438,232 KB
実行使用メモリ 67,920 KB
最終ジャッジ日時 2024-11-20 14:48:39
合計ジャッジ時間 23,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
57,212 KB
testcase_01 AC 507 ms
67,800 KB
testcase_02 AC 315 ms
57,016 KB
testcase_03 AC 314 ms
56,932 KB
testcase_04 AC 317 ms
56,960 KB
testcase_05 AC 505 ms
67,824 KB
testcase_06 AC 322 ms
56,840 KB
testcase_07 AC 310 ms
56,856 KB
testcase_08 AC 318 ms
56,824 KB
testcase_09 AC 318 ms
56,868 KB
testcase_10 AC 318 ms
56,868 KB
testcase_11 AC 316 ms
56,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 506 ms
63,640 KB
testcase_15 AC 420 ms
59,268 KB
testcase_16 AC 505 ms
65,556 KB
testcase_17 AC 424 ms
59,344 KB
testcase_18 AC 501 ms
65,652 KB
testcase_19 AC 494 ms
63,616 KB
testcase_20 AC 503 ms
67,700 KB
testcase_21 AC 340 ms
57,008 KB
testcase_22 AC 441 ms
59,560 KB
testcase_23 AC 514 ms
67,920 KB
testcase_24 AC 502 ms
67,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no79

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    val in1 = readLine()
    val in2 = readLine()
    println(majorityVote(in1, in2))
}

/**
 * 回答が一番多いレベルを返します。
 * @param num 評価した人数
 * @param evaluation ユーザーの評価
 */
fun majorityVote(@Suppress("UNUSED_PARAMETER") num: String?,
                 evaluation: String?): String {
    if (evaluation == null) {
        return ""
    }
    val sp = evaluation.split(" ").map { it.toInt() }
    val group = sp.groupBy { it }

    var maxKey = 0
    var maxValue = 0
    for ((k, v) in group) {
        if (maxValue <= v.size) {
            maxValue = v.size
            maxKey = k
        }
    }
    return maxKey.toString()
}
0