結果

問題 No.1032 数数え
ユーザー tentententen
提出日時 2020-09-28 14:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 863 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 83,896 KB
実行使用メモリ 61,620 KB
最終ジャッジ日時 2024-07-02 03:39:41
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,116 KB
testcase_01 AC 134 ms
41,060 KB
testcase_02 AC 130 ms
40,972 KB
testcase_03 AC 147 ms
41,644 KB
testcase_04 AC 133 ms
41,016 KB
testcase_05 AC 130 ms
41,040 KB
testcase_06 AC 146 ms
41,728 KB
testcase_07 AC 833 ms
61,528 KB
testcase_08 AC 141 ms
41,212 KB
testcase_09 AC 213 ms
42,816 KB
testcase_10 AC 185 ms
42,404 KB
testcase_11 AC 131 ms
41,040 KB
testcase_12 AC 863 ms
61,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] counts = new int[m + 1];
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    if (x <= m) {
		        counts[x]++;
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 1; i <= m; i++) {
		    sb.append(i).append(" ").append(counts[i]).append("\n");
		}
		System.out.print(sb);
	}
}
0