結果

問題 No.1032 数数え
ユーザー tentententen
提出日時 2024-07-10 17:48:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 3,107 ms
コンパイル使用メモリ 95,328 KB
実行使用メモリ 59,060 KB
最終ジャッジ日時 2024-07-10 17:48:23
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,128 KB
testcase_01 AC 96 ms
38,456 KB
testcase_02 AC 107 ms
39,932 KB
testcase_03 AC 95 ms
38,392 KB
testcase_04 AC 94 ms
38,264 KB
testcase_05 AC 103 ms
39,232 KB
testcase_06 AC 99 ms
38,720 KB
testcase_07 AC 552 ms
59,060 KB
testcase_08 AC 95 ms
38,548 KB
testcase_09 AC 172 ms
42,524 KB
testcase_10 AC 103 ms
38,900 KB
testcase_11 AC 94 ms
38,500 KB
testcase_12 AC 533 ms
57,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] counts = new int[m];
        while (n-- > 0) {
            int x = sc.nextInt();
            if (x <= m) {
                counts[x - 1]++;
            }
        }
        System.out.println(IntStream.range(0, m).mapToObj(i -> (i + 1) + " " + counts[i]).collect(Collectors.joining("\n")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0