結果

問題 No.628 Tagの勢い
ユーザー trkage_tedtrkage_ted
提出日時 2018-01-13 21:41:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,409 bytes
コンパイル時間 2,707 ms
コンパイル使用メモリ 90,068 KB
実行使用メモリ 54,712 KB
最終ジャッジ日時 2024-10-07 22:26:15
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
53,592 KB
testcase_01 AC 104 ms
53,508 KB
testcase_02 AC 106 ms
53,472 KB
testcase_03 AC 114 ms
53,652 KB
testcase_04 AC 93 ms
53,552 KB
testcase_05 AC 108 ms
53,964 KB
testcase_06 AC 109 ms
53,584 KB
testcase_07 AC 107 ms
53,400 KB
testcase_08 AC 97 ms
53,404 KB
testcase_09 AC 109 ms
53,440 KB
testcase_10 AC 100 ms
53,624 KB
testcase_11 AC 114 ms
53,736 KB
testcase_12 AC 177 ms
54,712 KB
testcase_13 AC 179 ms
54,688 KB
testcase_14 AC 182 ms
54,672 KB
testcase_15 AC 174 ms
54,632 KB
testcase_16 AC 144 ms
54,164 KB
testcase_17 AC 101 ms
53,204 KB
testcase_18 AC 112 ms
53,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.stream.Collectors;

import static java.util.Comparator.*;

public class Main {
	public static void main(String[] args) throws NumberFormatException, IOException {
		BufferedReader inReader = new BufferedReader(new InputStreamReader(System.in));

		int element = Integer.valueOf(inReader.readLine());

		Map<String, Integer> tagScore = new HashMap<>();

		for (int i = 0; i < element; i++) {
			int imageNo = Integer.valueOf(inReader.readLine());
			String[] inputs = inReader.readLine().split(" ");
			int tagCount = Integer.valueOf(inputs[0]);
			int score = Integer.valueOf(inputs[1]);

			String tags[] = inReader.readLine().split(" ");
			for (String tag : tags) {
				Integer now = tagScore.get(tag);
				if (now == null)
					now = 0;
				tagScore.put(tag, now + score);
			}

		}

		List<Entry<String, Integer>> sorted = tagScore
				.entrySet()
				.stream()
				.sorted(comparing(Entry<String, Integer>::getValue).reversed()
						.thenComparing(Entry<String, Integer>::getKey))
				.collect(Collectors.toList());
		int count = 0;
		for (Entry<String, Integer> entry : sorted) {
			System.out.println(entry.getKey() + " " + entry.getValue());
			count++;
			if (10 <= count) break;
		}
	}
}
0