結果
問題 | No.628 Tagの勢い |
ユーザー | yumechi |
提出日時 | 2021-03-04 02:23:47 |
言語 | Scala(Beta) (3.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 13,087 ms |
コンパイル使用メモリ | 264,188 KB |
実行使用メモリ | 74,048 KB |
最終ジャッジ日時 | 2024-10-04 01:23:33 |
合計ジャッジ時間 | 36,716 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1,022 ms
66,236 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,429 ms
74,048 KB |
testcase_13 | AC | 1,426 ms
73,740 KB |
testcase_14 | AC | 1,413 ms
71,468 KB |
testcase_15 | AC | 1,406 ms
73,548 KB |
testcase_16 | AC | 1,264 ms
67,224 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
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.map(elem => Array(elem._1, elem._2)).toSeq val arr = ta.sortWith((t1, t2) => { if(t1(1).toString.toInt > t2(1).toString.toInt) { true } else if(t1(1).toString.toInt == t2(1).toString.toInt && t1(0).toString >= t2(1).toString) { true } else { false } }) val limit = math.min(10, arr.length) for(i <- 0 until limit) { println(arr(i).mkString(" ")) } }