結果

問題 No.628 Tagの勢い
ユーザー Pump0129Pump0129
提出日時 2018-04-09 01:42:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 1,249 bytes
コンパイル時間 12,577 ms
コンパイル使用メモリ 435,552 KB
実行使用メモリ 60,012 KB
最終ジャッジ日時 2024-04-30 18:21:19
合計ジャッジ時間 20,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
57,344 KB
testcase_01 AC 329 ms
57,256 KB
testcase_02 AC 327 ms
57,364 KB
testcase_03 AC 334 ms
57,204 KB
testcase_04 AC 327 ms
57,136 KB
testcase_05 AC 331 ms
57,364 KB
testcase_06 AC 332 ms
57,360 KB
testcase_07 AC 332 ms
57,332 KB
testcase_08 AC 336 ms
57,428 KB
testcase_09 AC 333 ms
57,248 KB
testcase_10 AC 336 ms
57,356 KB
testcase_11 AC 341 ms
57,264 KB
testcase_12 AC 432 ms
59,832 KB
testcase_13 AC 437 ms
59,772 KB
testcase_14 AC 434 ms
59,948 KB
testcase_15 AC 435 ms
60,012 KB
testcase_16 AC 356 ms
59,456 KB
testcase_17 AC 335 ms
57,280 KB
testcase_18 AC 330 ms
57,376 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