結果

問題 No.1451 集団登校
ユーザー shiomusubi496
提出日時 2021-03-14 18:01:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 1,651 ms
コンパイル使用メモリ 165,816 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 07:34:23
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int N,M; cin>>N>>M;
    assert(1<=N && N<=100000);
    assert(0<=M && M<=100000);
    for(int i=0;i<M;i++){
        int A,B; cin>>A>>B;
        assert(1<=A && A<B && B<=N);
    }
}
0