結果

問題 No.2279 OR Insertion
ユーザー magstamagsta
提出日時 2023-04-19 13:38:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 7,272 ms
コンパイル使用メモリ 223,528 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-14 14:23:30
合計ジャッジ時間 8,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other RE * 23 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include "testlib.h"
using namespace std;

int main() {
	registerValidation();
	int N = inf.readInt(1, 3000, "N");
	inf.readEoln();
	string S = inf.readToken(format("[01]{%d, %d}", N, N));
	inf.readEoln();
	inf.readEof();
}
0