結果

問題 No.3220 Forest Creation
ユーザー zawakasu
提出日時 2025-08-01 23:07:52
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 84,976 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-08-01 23:07:55
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 45
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
using namespace std;

int main() {
    int N;
    cin >> N;
    assert(1 <= N and N <= 100000);
    vector<long long> A(N + 1);
    for (int i = 0 ; i <= N ; i++) {
        cin >> A[i];
        assert(0 <= A[i] and A[i] <= 100000000);
    }
}
0