結果
問題 | No.628 Tagの勢い |
ユーザー | tenten |
提出日時 | 2020-10-09 12:54:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 294 ms / 2,000 ms |
コード長 | 1,580 bytes |
コンパイル時間 | 2,557 ms |
コンパイル使用メモリ | 83,692 KB |
実行使用メモリ | 59,936 KB |
最終ジャッジ日時 | 2024-07-20 06:44:18 |
合計ジャッジ時間 | 7,639 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 168 ms
54,972 KB |
testcase_01 | AC | 172 ms
54,824 KB |
testcase_02 | AC | 169 ms
54,828 KB |
testcase_03 | AC | 173 ms
54,720 KB |
testcase_04 | AC | 169 ms
54,944 KB |
testcase_05 | AC | 167 ms
54,768 KB |
testcase_06 | AC | 170 ms
54,756 KB |
testcase_07 | AC | 179 ms
55,076 KB |
testcase_08 | AC | 185 ms
55,056 KB |
testcase_09 | AC | 179 ms
55,144 KB |
testcase_10 | AC | 200 ms
55,484 KB |
testcase_11 | AC | 186 ms
54,992 KB |
testcase_12 | AC | 294 ms
59,816 KB |
testcase_13 | AC | 291 ms
59,568 KB |
testcase_14 | AC | 290 ms
59,936 KB |
testcase_15 | AC | 294 ms
59,452 KB |
testcase_16 | AC | 272 ms
59,536 KB |
testcase_17 | AC | 171 ms
54,848 KB |
testcase_18 | AC | 169 ms
55,124 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); HashMap<String, Integer> map = new HashMap<>(); for (int i = 0; i < n; i++) { sc.nextInt(); int m = sc.nextInt(); int p = sc.nextInt(); for (int j = 0; j < m; j++) { String s = sc.next(); if (map.containsKey(s)) { map.put(s, map.get(s) + p); } else { map.put(s, p); } } } PriorityQueue<Tag> tags = new PriorityQueue<>(); for (Map.Entry<String, Integer> entry : map.entrySet()) { tags.add(new Tag(entry.getKey(), entry.getValue())); } StringBuilder sb = new StringBuilder(); for (int i = 0; i < 10 && tags.size() > 0; i++) { sb.append(tags.poll()).append("\n"); } System.out.print(sb); } static class Tag implements Comparable<Tag> { String name; int value; public Tag(String name, int value) { this.name = name; this.value = value; } public int compareTo(Tag another) { if (value == another.value) { return name.compareTo(another.name); } else { return another.value - value; } } public String toString() { return name + " " + value; } } }