結果

問題 No.230 Splarraay スプラレェーイ
コンテスト
ユーザー koyumeishi
提出日時 2015-06-11 04:58:22
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 477 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 505 ms
コンパイル使用メモリ 93,880 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-03-28 05:20:09
合計ジャッジ時間 2,157 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
#include "assert.h"
using namespace std;

int main(){
	int n,q;
	cin >> n >> q;
	assert(1<=n && n<=100000);
	assert(1<=q && q<=100000);

	for(int i=0; i<q; i++){
		int x,l,r;
		cin >> x >> l >> r;
		assert(0<=x && x<=2);
		assert(0<=l && l<n);
		assert(l<=r);
		assert(0<=r && r<n);
	}

	return 0;
}
0