結果

問題 No.2153 何コーダーが何人?
ユーザー kanenistkanenist
提出日時 2023-03-05 23:06:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 57,192 KB
最終ジャッジ日時 2024-09-18 01:41:54
合計ジャッジ時間 6,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,748 KB
testcase_01 AC 162 ms
57,192 KB
testcase_02 AC 175 ms
54,344 KB
testcase_03 AC 189 ms
54,696 KB
testcase_04 AC 182 ms
54,844 KB
testcase_05 AC 183 ms
54,460 KB
testcase_06 AC 184 ms
56,364 KB
testcase_07 AC 180 ms
54,764 KB
testcase_08 AC 173 ms
54,452 KB
testcase_09 AC 182 ms
54,676 KB
testcase_10 AC 173 ms
54,308 KB
testcase_11 AC 180 ms
56,836 KB
testcase_12 AC 165 ms
54,748 KB
testcase_13 AC 176 ms
54,560 KB
testcase_14 AC 177 ms
54,268 KB
testcase_15 AC 175 ms
54,556 KB
testcase_16 AC 188 ms
56,648 KB
testcase_17 AC 191 ms
56,580 KB
testcase_18 AC 183 ms
54,952 KB
testcase_19 AC 110 ms
53,176 KB
testcase_20 AC 126 ms
54,272 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<>();
    	for(int i = 0; i < n; i++){
    		String s = sc.next();
    		int m = sc.nextInt();
    		map.put(s,m);
    	}
    	int c[] = new int[8];
    	for(int i = 0; i < 8; i++) c[i] = 0;
    	for(int val : map.values()){
    		c[val] += 1;
    	}
    	for(int i = 0; i < 8; i++) System.out.println(c[i]);
    }
}
0