結果

問題 No.2092 Conjugation
ユーザー 7iz67iz6
提出日時 2022-10-21 23:05:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 65,412 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-13 23:14:15
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 12 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:19:22: 警告: ‘a1’ may be used uninitialized [-Wmaybe-uninitialized]
   19 |     for(int i = 0; i < a1; i++) {
      |                    ~~^~~~
main.cpp:9:9: 備考: ‘a1’ はここで定義されています
    9 |     int a1;
      |         ^~

ソースコード

diff #

#include<iostream>
using namespace std;

const int MAXN = 1e5+5;

int main() {
    int n; cin >> n;
    int a[MAXN] = {};
    int a1;
    for(int i = 0; i < n; i ++ ) {
        int b; cin >> b;
        if(i == 0) a1 = b;
        a[0]++;
        a[b]--;
    }
    for(int i = 1; i < a1; i++) {
        a[i] += a[i-1];
    }
    for(int i = 0; i < a1; i++) {
        cout << a[i];
		if(i < a1-1) cout << " ";
		cout << endl;
    }
}
0