結果

問題 No.2154 あさかつの参加人数
ユーザー 👑 potato167potato167
提出日時 2022-12-10 00:17:50
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 201,616 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 23:14:39
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)
using ll = long long;
template<class T> bool chmin(T &a,const T b){if(a>b){a=b;return 1;}return 0;}
template<class T> bool chmax(T &a,const T b){if(a<b){a=b;return 1;}return 0;}
const int INF = (1<<30)-1;
#define all(p) p.begin(),p.end()

int main(){
	int N,M;
	cin>>N>>M;
	vector<int> p(N+1);
	rep(i,0,M){
		int a,b;
		cin>>a>>b;
		p[N-a]++;
		p[N+1-b]--;
	}
	rep(i,0,N){
		cout<<p[i]<<"\n";
		p[i+1]+=p[i];
	}
}
0