結果

問題 No.628 Tagの勢い
ユーザー takeya_okinotakeya_okino
提出日時 2018-01-07 20:19:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 84,684 KB
実行使用メモリ 48,352 KB
最終ジャッジ日時 2024-10-07 22:21:47
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
42,392 KB
testcase_01 AC 155 ms
42,652 KB
testcase_02 AC 152 ms
42,148 KB
testcase_03 AC 158 ms
42,512 KB
testcase_04 AC 150 ms
42,400 KB
testcase_05 AC 152 ms
42,468 KB
testcase_06 AC 151 ms
42,560 KB
testcase_07 AC 171 ms
42,508 KB
testcase_08 AC 164 ms
42,816 KB
testcase_09 AC 158 ms
42,472 KB
testcase_10 AC 188 ms
43,396 KB
testcase_11 AC 169 ms
42,780 KB
testcase_12 AC 267 ms
48,216 KB
testcase_13 AC 264 ms
48,352 KB
testcase_14 AC 267 ms
48,068 KB
testcase_15 AC 272 ms
47,960 KB
testcase_16 AC 247 ms
47,980 KB
testcase_17 AC 155 ms
42,304 KB
testcase_18 AC 154 ms
42,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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<String, Integer>();
    for(int i = 0; i < n; i++) {
      int ni = sc.nextInt();
      int m = sc.nextInt();
      int s = sc.nextInt();
      s *= (-1);
      for(int j = 0; j < m; j++) {
        String tag = sc.next();
        if(map.containsKey(tag)) {
          map.put(tag, map.get(tag) + s);
        } else {
          map.put(tag, s);
        }
      }
    }
    HashMap<Integer, ArrayList<String>> map2 = new HashMap<Integer, ArrayList<String>>();
    for(String t : map.keySet()) {
      int score = map.get(t);
      if(map2.containsKey(score)) {
        ArrayList<String> list = map2.get(score);
        list.add(t);
        map2.put(score, list);
      } else {
        ArrayList<String> list = new ArrayList<String>();
        list.add(t);
        map2.put(score, list);
      }
    }
    ArrayList<Integer> key = new ArrayList<>(map2.keySet());
    Collections.sort(key);
    int flg = 0;
    for(int i = 0; i < key.size(); i++) {
      if(flg >= 10) break;
      int tensuu = key.get(i);
      ArrayList<String> list = map2.get(tensuu);
      tensuu *= (-1);
      Collections.sort(list);
      for(int j = 0; j < list.size(); j++) {
        String a = list.get(j);
        if(flg < 10) {
          System.out.println(a + " " + tensuu);
          flg++;
        } else {
          break;
        }
      }
    }
  }
}
0