結果

問題 No.1032 数数え
ユーザー yomo3yomo3
提出日時 2020-05-07 23:22:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 85,684 KB
実行使用メモリ 60,360 KB
最終ジャッジ日時 2024-07-03 09:40:19
合計ジャッジ時間 6,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
43,080 KB
testcase_01 AC 126 ms
42,768 KB
testcase_02 AC 150 ms
43,308 KB
testcase_03 AC 151 ms
43,176 KB
testcase_04 AC 144 ms
43,308 KB
testcase_05 AC 146 ms
43,380 KB
testcase_06 AC 147 ms
43,276 KB
testcase_07 AC 744 ms
57,352 KB
testcase_08 AC 155 ms
43,388 KB
testcase_09 AC 210 ms
44,552 KB
testcase_10 AC 188 ms
45,176 KB
testcase_11 AC 148 ms
43,164 KB
testcase_12 AC 737 ms
60,360 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[] cnt = new int[200001];
        for (int i = 0; i < N; i++) {
            cnt[Integer.parseInt(sc.next())]++;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 1; i <= M; i++) {
            sb.append(i + " " + cnt[i] + '\n');
        }
        System.out.print(sb);
    }
}
0