結果

問題 No.2092 Conjugation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 17:51:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 107,640 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 12:42:02
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 17 ms
5,376 KB
testcase_16 AC 34 ms
5,376 KB
testcase_17 AC 39 ms
5,376 KB
testcase_18 AC 36 ms
5,376 KB
testcase_19 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:32:20: warning: 'B' may be used uninitialized [-Wmaybe-uninitialized]
   32 |     for (int i=1; i<=B; i++) cout << cnt[i] << " ";
      |                   ~^~~
main.cpp:19:15: note: 'B' was declared here
   19 |     int N, A, B;
      |               ^

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, A, B;
    cin >> N;

    vector<int> cnt(1e5+5);
    for (int i=0; i<N; i++){
        cin >> A;
        if (i == 0) B = A;
        cnt[1]++;
        cnt[A+1]--;
    }

    for (int i=1; i<1e5+5; i++) cnt[i] += cnt[i-1];

    for (int i=1; i<=B; i++) cout << cnt[i] << " ";
    cout << endl;

    return 0;
}
0