結果

問題 No.2092 Conjugation
ユーザー yicodeyicode
提出日時 2023-05-15 13:32:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 543 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 168,856 KB
実行使用メモリ 8,072 KB
最終ジャッジ日時 2024-11-30 19:49:51
合計ジャッジ時間 3,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,100 KB
testcase_01 AC 4 ms
7,168 KB
testcase_02 AC 4 ms
7,168 KB
testcase_03 AC 4 ms
7,120 KB
testcase_04 AC 4 ms
7,152 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 14 ms
7,472 KB
testcase_08 AC 32 ms
7,852 KB
testcase_09 AC 22 ms
7,680 KB
testcase_10 AC 26 ms
7,680 KB
testcase_11 AC 25 ms
7,676 KB
testcase_12 AC 21 ms
7,684 KB
testcase_13 AC 17 ms
7,552 KB
testcase_14 AC 15 ms
7,552 KB
testcase_15 AC 21 ms
7,552 KB
testcase_16 AC 39 ms
7,808 KB
testcase_17 AC 46 ms
8,072 KB
testcase_18 AC 43 ms
7,936 KB
testcase_19 AC 17 ms
7,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
vector<int> X(1000000);
int main() {
    int N; cin >> N;
    vector<int> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    int x = -1;
    for(int i = 0; i < N; i++) {
        X[1]++;
        X[A[i] + 1]--;
        x = max(A[i],x);
    }
    vector<int> Z(x + 1,0);
    for(int i =1; i <= x + 1;i++) {
        Z[i] = Z[i - 1] + X[i];
    }
    for(int i = 1; i <x; i++) {
        cout << Z[i] << " ";
    }
    cout << Z[x] << endl;
}
0