結果

問題 No.1032 数数え
ユーザー tentententen
提出日時 2022-09-13 18:26:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 84,420 KB
実行使用メモリ 63,952 KB
最終ジャッジ日時 2024-05-08 02:22:05
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,012 KB
testcase_01 AC 53 ms
37,072 KB
testcase_02 AC 54 ms
37,072 KB
testcase_03 AC 52 ms
36,920 KB
testcase_04 AC 54 ms
37,360 KB
testcase_05 AC 54 ms
36,768 KB
testcase_06 AC 52 ms
37,148 KB
testcase_07 AC 601 ms
63,952 KB
testcase_08 AC 55 ms
37,144 KB
testcase_09 AC 114 ms
39,820 KB
testcase_10 AC 60 ms
37,280 KB
testcase_11 AC 54 ms
36,764 KB
testcase_12 AC 478 ms
50,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        TreeMap<Integer, Integer> counts = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x <= m) {
                counts.put(x, counts.getOrDefault(x, 0) + 1);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 1; i <= m; i++) {
            sb.append(i).append(" ").append(counts.getOrDefault(i, 0)).append("\n");
        }
        System.out.print(sb);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0