結果

問題 No.3364 Push_back Operation
コンテスト
ユーザー cho435
提出日時 2025-10-29 17:29:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 7,832 ms
コンパイル使用メモリ 323,388 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-11-17 20:37:32
合計ジャッジ時間 9,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include "testlib.h"
using namespace std;
using ll = long long;

const ll N_min = 1;
const ll N_max = 100'000'000'000LL;

int main() {
	registerValidation();
	ll N = inf.readLong(N_min, N_max);
	inf.readEoln();
	inf.readEof();
}
0