結果

問題 No.1032 数数え
ユーザー yomo3yomo3
提出日時 2020-05-07 23:31:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 66,768 KB
最終ジャッジ日時 2024-07-03 09:40:27
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,972 KB
testcase_01 AC 148 ms
55,096 KB
testcase_02 AC 141 ms
54,520 KB
testcase_03 AC 156 ms
54,592 KB
testcase_04 AC 150 ms
54,796 KB
testcase_05 AC 155 ms
54,872 KB
testcase_06 AC 157 ms
54,776 KB
testcase_07 AC 830 ms
66,768 KB
testcase_08 AC 160 ms
55,004 KB
testcase_09 AC 257 ms
58,904 KB
testcase_10 AC 193 ms
57,968 KB
testcase_11 AC 151 ms
54,904 KB
testcase_12 AC 933 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.PrintWriter;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        PrintWriter pw = new PrintWriter(System.out);
        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())]++;
        }
        for (int i = 1; i <= M; i++) {
            pw.println(i + " " + cnt[i]);
        }
        pw.flush();
    }
}
0