結果

問題 No.628 Tagの勢い
ユーザー shinwisteriashinwisteria
提出日時 2018-03-06 20:25:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 3,436 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 48,632 KB
最終ジャッジ日時 2024-10-07 22:36:55
合計ジャッジ時間 7,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,320 KB
testcase_01 AC 150 ms
42,040 KB
testcase_02 AC 143 ms
42,332 KB
testcase_03 AC 151 ms
42,548 KB
testcase_04 AC 142 ms
42,252 KB
testcase_05 AC 149 ms
42,468 KB
testcase_06 AC 149 ms
42,712 KB
testcase_07 AC 150 ms
42,584 KB
testcase_08 AC 158 ms
42,524 KB
testcase_09 AC 142 ms
42,520 KB
testcase_10 AC 164 ms
42,768 KB
testcase_11 AC 163 ms
42,752 KB
testcase_12 AC 271 ms
48,396 KB
testcase_13 AC 271 ms
48,428 KB
testcase_14 AC 268 ms
48,328 KB
testcase_15 AC 268 ms
48,632 KB
testcase_16 AC 245 ms
47,744 KB
testcase_17 AC 147 ms
42,496 KB
testcase_18 AC 147 ms
42,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Map.Entry;
import java.util.Scanner;
import java.util.TreeMap;
public class Con628 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		TreeMap<String , Integer> tag = new TreeMap<>();
		for(int i = 0;i < N;i++){
			s.nextInt();
			int M = s.nextInt() , point = s.nextInt();
			for(int j = 0;j < M;j++){
				String str = s.next();
				if(tag.get(str) == null){
					tag.put(str, point);
				}else{
					tag.put(str, tag.get(str)+point);
				}
				//System.out.println(str + "   " + tag.get(str));
			}
		}
		s.close();

		int size = tag.size();
		TreeMap<Integer , String> ans = new TreeMap<>();
		for(int i = 0;i < size;i++){
			Entry<String , Integer> ent = tag.pollFirstEntry();
			int j = 9;
			while(ans.get(ent.getValue()*10 + j) != null){
				j--;
			}
			ans.put(ent.getValue()*10 + j, ent.getKey());
		}

		for(int i = 0;i < Math.min(size, 10);i++){
			Entry<Integer , String> ent = ans.pollLastEntry();
			System.out.println(ent.getValue() + " " + ent.getKey()/10);
		}

	}

}
0