結果

問題 No.2153 何コーダーが何人?
ユーザー viral8viral8
提出日時 2022-12-09 21:32:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 43,684 KB
最終ジャッジ日時 2024-10-14 20:38:56
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 198 ms
42,632 KB
testcase_03 AC 215 ms
43,160 KB
testcase_04 AC 209 ms
42,600 KB
testcase_05 AC 208 ms
42,908 KB
testcase_06 AC 218 ms
43,416 KB
testcase_07 AC 212 ms
43,016 KB
testcase_08 AC 204 ms
42,532 KB
testcase_09 AC 217 ms
43,144 KB
testcase_10 AC 201 ms
42,364 KB
testcase_11 AC 226 ms
43,280 KB
testcase_12 AC 204 ms
42,188 KB
testcase_13 AC 210 ms
42,588 KB
testcase_14 AC 204 ms
42,724 KB
testcase_15 AC 204 ms
42,304 KB
testcase_16 AC 218 ms
42,724 KB
testcase_17 AC 216 ms
43,404 KB
testcase_18 AC 210 ms
43,548 KB
testcase_19 AC 138 ms
41,428 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] count = new int[8];
		while(N-->0){
			sc.next();
			int C = sc.nextInt();
			count[C]++;
		}
		for(int ans:count)
			System.out.println(ans);
	}
}
0