結果
問題 | No.628 Tagの勢い |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-16 16:01:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,001 bytes |
コンパイル時間 | 2,700 ms |
コンパイル使用メモリ | 81,496 KB |
実行使用メモリ | 48,632 KB |
最終ジャッジ日時 | 2024-10-07 22:31:24 |
合計ジャッジ時間 | 6,713 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
42,096 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 130 ms
42,212 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 165 ms
42,700 KB |
testcase_11 | AC | 154 ms
42,428 KB |
testcase_12 | AC | 263 ms
48,392 KB |
testcase_13 | AC | 281 ms
48,216 KB |
testcase_14 | AC | 260 ms
48,632 KB |
testcase_15 | AC | 268 ms
46,972 KB |
testcase_16 | AC | 250 ms
48,268 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); Map<String,Integer> map = new TreeMap<>(); List<Integer> list = new ArrayList<>(); for (int i=0; i<n; i++) { int no = sc.nextInt(); int m = sc.nextInt(); int score = sc.nextInt(); for (int j=0; j<m; j++) { String tag = sc.next(); map.put(tag,map.getOrDefault(tag,0)); map.put(tag,map.get(tag)+score); } } for (Map.Entry<String,Integer> entry : map.entrySet()) { list.add(entry.getValue()); } Collections.sort(list,Comparator.reverseOrder()); String k1 = ""; int v1 = 0; for (int i=0; i<list.size(); i++) { for (Map.Entry<String,Integer> entry : map.entrySet()) { if (entry.getValue()==list.get(i) && entry.getKey().equals(k1)==false) { System.out.println(entry.getKey()+" "+entry.getValue()); k1 = entry.getKey(); break; } } if (i==9) {break;} } } }