結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 30 ms
5,248 KB
testcase_09 AC 19 ms
5,248 KB
testcase_10 AC 21 ms
5,248 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 18 ms
5,248 KB
testcase_13 AC 14 ms
5,248 KB
testcase_14 AC 14 ms
5,248 KB
testcase_15 AC 19 ms
5,248 KB
testcase_16 AC 37 ms
5,248 KB
testcase_17 AC 44 ms
5,248 KB
testcase_18 AC 40 ms
5,248 KB
testcase_19 AC 15 ms
5,248 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