結果

問題 No.2154 あさかつの参加人数
ユーザー kotatsugamekotatsugame
提出日時 2022-12-09 21:22:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 63,168 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-10-14 18:58:37
合計ジャッジ時間 10,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
5,504 KB
testcase_01 AC 385 ms
5,376 KB
testcase_02 AC 386 ms
5,376 KB
testcase_03 AC 389 ms
5,376 KB
testcase_04 AC 387 ms
5,376 KB
testcase_05 AC 171 ms
5,248 KB
testcase_06 AC 298 ms
5,248 KB
testcase_07 AC 178 ms
5,248 KB
testcase_08 AC 168 ms
5,248 KB
testcase_09 AC 40 ms
5,248 KB
testcase_10 AC 158 ms
5,248 KB
testcase_11 AC 329 ms
5,248 KB
testcase_12 AC 256 ms
5,248 KB
testcase_13 AC 148 ms
5,248 KB
testcase_14 AC 288 ms
5,248 KB
testcase_15 AC 157 ms
5,248 KB
testcase_16 AC 269 ms
5,248 KB
testcase_17 AC 309 ms
5,248 KB
testcase_18 AC 327 ms
5,248 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 252 ms
5,248 KB
testcase_21 AC 33 ms
5,248 KB
testcase_22 AC 68 ms
5,248 KB
testcase_23 AC 306 ms
5,248 KB
testcase_24 AC 345 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int C[5<<17];
int main()
{
	int N,M;
	cin>>N>>M;
	for(;M--;)
	{
		int l,r;cin>>l>>r;
		C[N-l]++;
		C[N-r+1]--;
	}
	int t=0;
	for(int i=0;i<N;i++)cout<<(t+=C[i])<<"\n";
}
0