結果

問題 No.1032 数数え
ユーザー htensaihtensai
提出日時 2020-04-30 12:54:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 881 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 3,680 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 61,408 KB
最終ジャッジ日時 2024-05-08 22:13:28
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,524 KB
testcase_01 AC 134 ms
41,960 KB
testcase_02 AC 136 ms
41,368 KB
testcase_03 AC 134 ms
41,460 KB
testcase_04 AC 136 ms
41,332 KB
testcase_05 AC 135 ms
41,268 KB
testcase_06 AC 135 ms
41,412 KB
testcase_07 AC 827 ms
61,408 KB
testcase_08 AC 143 ms
41,516 KB
testcase_09 AC 216 ms
42,848 KB
testcase_10 AC 178 ms
42,412 KB
testcase_11 AC 133 ms
41,288 KB
testcase_12 AC 881 ms
60,684 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