結果

問題 No.1032 数数え
ユーザー ks2mks2m
提出日時 2020-04-23 13:04:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 62,512 KB
最終ジャッジ日時 2024-10-13 11:24:04
合計ジャッジ時間 4,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
39,128 KB
testcase_01 AC 79 ms
38,716 KB
testcase_02 AC 77 ms
38,728 KB
testcase_03 AC 77 ms
38,992 KB
testcase_04 AC 87 ms
39,088 KB
testcase_05 AC 85 ms
39,636 KB
testcase_06 AC 74 ms
38,428 KB
testcase_07 AC 505 ms
61,996 KB
testcase_08 AC 75 ms
38,836 KB
testcase_09 AC 145 ms
40,644 KB
testcase_10 AC 80 ms
39,132 KB
testcase_11 AC 76 ms
38,576 KB
testcase_12 AC 516 ms
62,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] ans = new int[200001];
		for (int i = 0; i < n; i++) {
			int l = Integer.parseInt(sa[i]);
			ans[l]++;
		}
		br.close();

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 1; i <= m; i++) {
			pw.println(i + " " + ans[i]);
		}
		pw.flush();
	}
}
0