結果

問題 No.628 Tagの勢い
ユーザー Pump0129Pump0129
提出日時 2018-04-09 01:42:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 1,249 bytes
コンパイル時間 12,399 ms
コンパイル使用メモリ 441,880 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-11-20 15:47:07
合計ジャッジ時間 20,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
52,676 KB
testcase_01 AC 328 ms
52,384 KB
testcase_02 AC 332 ms
52,620 KB
testcase_03 AC 331 ms
52,352 KB
testcase_04 AC 325 ms
52,572 KB
testcase_05 AC 324 ms
52,484 KB
testcase_06 AC 328 ms
52,396 KB
testcase_07 AC 332 ms
52,684 KB
testcase_08 AC 332 ms
52,448 KB
testcase_09 AC 328 ms
52,404 KB
testcase_10 AC 332 ms
52,656 KB
testcase_11 AC 330 ms
52,604 KB
testcase_12 AC 432 ms
53,968 KB
testcase_13 AC 431 ms
53,992 KB
testcase_14 AC 431 ms
54,032 KB
testcase_15 AC 433 ms
53,760 KB
testcase_16 AC 357 ms
53,304 KB
testcase_17 AC 329 ms
52,528 KB
testcase_18 AC 329 ms
52,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

import java.io.BufferedReader
import java.io.InputStreamReader

fun main(args: Array<String>) {
    val br = BufferedReader(InputStreamReader(System.`in`))

    val count = br.readLine().toInt()
    val tagsMap = HashMap<String, Int>()

    (0 until count).forEach {
        br.readLine()
        val data = br.readLine().split(" ")
        val tagsPoint = data[1].toInt()
        val tags = br.readLine().split(" ")

        tags.forEach {
            var tagPoint = 0
            if (tagsMap.containsKey(it)) {
                tagPoint = tagsMap[it]!!
            }
            tagsMap[it] = tagPoint + tagsPoint
        }
    }

    tagsMap.toSortedMap(Comparator { o1, o2 ->
        val val1 = tagsMap[o1]!!
        val val2 = tagsMap[o2]!!
        when {
            val1 < val2 -> return@Comparator 1
            val2 < val1 -> return@Comparator -1
            else -> {
                when {
                    o1 < o2 -> return@Comparator -1
                    o2 < o1 -> return@Comparator 1
                    else -> 0
                }
            }
        }
    }).toList().take(10).forEach { println("${it.first} ${it.second}") }

    br.close()
}
0