結果

問題 No.628 Tagの勢い
ユーザー yumechiyumechi
提出日時 2021-03-04 02:39:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,172 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 9,977 ms
コンパイル使用メモリ 263,628 KB
実行使用メモリ 72,224 KB
最終ジャッジ日時 2024-10-04 01:40:04
合計ジャッジ時間 29,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 873 ms
66,464 KB
testcase_01 AC 859 ms
66,536 KB
testcase_02 AC 876 ms
66,024 KB
testcase_03 AC 874 ms
66,460 KB
testcase_04 AC 864 ms
65,976 KB
testcase_05 AC 861 ms
66,200 KB
testcase_06 AC 862 ms
66,492 KB
testcase_07 AC 899 ms
66,624 KB
testcase_08 AC 896 ms
66,728 KB
testcase_09 AC 875 ms
66,296 KB
testcase_10 AC 905 ms
66,776 KB
testcase_11 AC 889 ms
66,632 KB
testcase_12 AC 1,166 ms
71,992 KB
testcase_13 AC 1,169 ms
71,980 KB
testcase_14 AC 1,148 ms
71,256 KB
testcase_15 AC 1,172 ms
72,224 KB
testcase_16 AC 1,063 ms
67,192 KB
testcase_17 AC 884 ms
66,520 KB
testcase_18 AC 873 ms
66,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  var mp = Map.empty[String, Int]
  for(_ <- 0 until n) {
    val _ = sc.nextInt
    val m = sc.nextInt
    val s = sc.nextInt
    for(t <- Array.fill(m)(sc.next)) {
      val cs = mp.getOrElse(t, 0)
      mp += t -> (cs + s)
    }
  }
  val ta = mp.toSeq
  val arr = ta.sortBy(t => (-t._2, t._1))
  for(i <- 0 until math.min(10, arr.length)) {
    println(s"${arr(i)._1} ${arr(i)._2}")
  }
}
0