結果

問題 No.3371 Add Insert Operations
コンテスト
ユーザー Naru820
提出日時 2025-11-01 16:24:54
言語 C++23
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
RE  
実行時間 -
コード長 466 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,799 ms
コンパイル使用メモリ 442,424 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-07-16 17:04:08
合計ジャッジ時間 9,098 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 3 RE * 33
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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);
        inf.readEoln();
    }
    inf.readEof();
}
0