結果

問題 No.2092 Conjugation
ユーザー tentententen
提出日時 2022-10-11 09:36:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,445 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 45,720 KB
最終ジャッジ日時 2024-06-25 05:24:46
合計ジャッジ時間 6,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,072 KB
testcase_01 AC 53 ms
37,004 KB
testcase_02 AC 52 ms
36,956 KB
testcase_03 AC 51 ms
36,936 KB
testcase_04 AC 53 ms
36,636 KB
testcase_05 AC 53 ms
36,940 KB
testcase_06 AC 52 ms
36,968 KB
testcase_07 AC 105 ms
39,324 KB
testcase_08 AC 231 ms
44,748 KB
testcase_09 AC 185 ms
44,060 KB
testcase_10 AC 205 ms
43,796 KB
testcase_11 AC 211 ms
43,840 KB
testcase_12 AC 189 ms
43,528 KB
testcase_13 AC 161 ms
41,528 KB
testcase_14 AC 152 ms
41,216 KB
testcase_15 AC 191 ms
43,080 KB
testcase_16 AC 258 ms
45,720 KB
testcase_17 AC 263 ms
45,548 KB
testcase_18 AC 265 ms
45,616 KB
testcase_19 AC 168 ms
44,340 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 a1 = sc.nextInt();
        int[] sums = new int[a1 + 1];
        sums[0] = 1;
        for (int i = 0; i < n - 1; i++) {
            sums[0]++;
            sums[sc.nextInt()]--;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < a1; i++) {
            if (i == 0) {
                sb.append(sums[i]);
            } else {
                sums[i] += sums[i - 1];
                sb.append(" ").append(sums[i]);
            }
        }
        System.out.println(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