結果

問題 No.3371 Add Insert Operations
コンテスト
ユーザー Naru820
提出日時 2025-11-01 16:26:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 592 bytes
コンパイル時間 9,441 ms
コンパイル使用メモリ 352,424 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-11-17 20:42:00
合計ジャッジ時間 10,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

// 脳みそがついてなさすぎる
#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define all(a) begin(a), end(a)

const int min_N = 1;
const int max_N = 200000;
const ll min_A = 0LL;
const ll max_A = 1000000000LL;
int main() {
    registerValidation();
    int N = inf.readInt(min_N, max_N);
    inf.readEoln();
    for (int i = 0; i < N; ++i) {
        inf.readLong(min_A, max_A);
        if (i == N - 1) {
            inf.readEoln();
        } else {
            inf.readSpace();
        }
    }
    inf.readEof();
}
0