結果

問題 No.628 Tagの勢い
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-16 02:09:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 11,062 ms
コンパイル使用メモリ 442,412 KB
実行使用メモリ 65,832 KB
最終ジャッジ日時 2024-04-30 16:54:36
合計ジャッジ時間 18,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
60,700 KB
testcase_01 AC 300 ms
60,664 KB
testcase_02 AC 292 ms
60,740 KB
testcase_03 AC 310 ms
60,740 KB
testcase_04 AC 282 ms
57,040 KB
testcase_05 AC 325 ms
60,648 KB
testcase_06 AC 340 ms
60,584 KB
testcase_07 AC 301 ms
60,544 KB
testcase_08 AC 303 ms
60,696 KB
testcase_09 AC 301 ms
60,688 KB
testcase_10 AC 327 ms
60,780 KB
testcase_11 AC 314 ms
60,588 KB
testcase_12 AC 438 ms
65,664 KB
testcase_13 AC 448 ms
65,660 KB
testcase_14 AC 433 ms
65,716 KB
testcase_15 AC 464 ms
65,832 KB
testcase_16 AC 350 ms
63,208 KB
testcase_17 AC 297 ms
60,644 KB
testcase_18 AC 307 ms
60,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:6:10: warning: variable 'num' is never used
    val (num, score) = readLine()!!.split(" ").map { it.toInt() }
         ^
Main.kt:18:18: warning: parameter 'i' is never used, could be renamed to _
  }.mapIndexed { i, pair ->
                 ^
Main.kt:28:10: warning: variable 'freq' is never used
    val (freq, list) = it
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  val map = mutableMapOf<String, Int>()
  (1..n).map { 
    readLine()
    val (num, score) = readLine()!!.split(" ").map { it.toInt() }
    val words = readLine()!!.split(" ")
    words.map { word ->
      if(map.get(word) == null)
        map[word] = 0
      map[word] = map[word]!! + score
    }
  }

  val freq_list = mutableMapOf<Int, MutableList<String>>()
  map.toList().sortedBy {
    it.second * -1
  }.mapIndexed { i, pair ->
    val (word, freq) = pair
    if( freq_list.get(freq) == null )
      freq_list[freq] = mutableListOf<String>()
    freq_list[freq]!!.add( "${word} ${freq}" )
  }

  freq_list.toList().sortedBy { 
    it.first * -1
  }.map { 
    val (freq, list) = it
    list.sortedBy { 
      it
    }
  }.flatten().mapIndexed { index, it ->
    if( index <= 9 )
      println(it)
  }
}
0