結果
問題 |
No.230 Splarraay スプラレェーイ
|
ユーザー |
![]() |
提出日時 | 2015-06-11 04:58:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 477 bytes |
コンパイル時間 | 557 ms |
コンパイル使用メモリ | 72,036 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 15:32:00 |
合計ジャッジ時間 | 2,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 17 |
ソースコード
#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; }