結果

問題 No.2154 あさかつの参加人数
ユーザー Kome_soudouKome_soudou
提出日時 2022-12-09 21:28:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 998 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 1,576 ms
コンパイル使用メモリ 169,036 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-14 20:11:14
合計ジャッジ時間 22,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
6,820 KB
testcase_01 AC 983 ms
6,820 KB
testcase_02 AC 967 ms
6,816 KB
testcase_03 AC 967 ms
6,816 KB
testcase_04 AC 998 ms
6,820 KB
testcase_05 AC 172 ms
6,820 KB
testcase_06 AC 559 ms
6,820 KB
testcase_07 AC 568 ms
6,820 KB
testcase_08 AC 594 ms
6,820 KB
testcase_09 AC 344 ms
6,816 KB
testcase_10 AC 496 ms
6,816 KB
testcase_11 AC 838 ms
6,820 KB
testcase_12 AC 581 ms
6,816 KB
testcase_13 AC 278 ms
6,816 KB
testcase_14 AC 604 ms
6,820 KB
testcase_15 AC 572 ms
6,816 KB
testcase_16 AC 659 ms
6,820 KB
testcase_17 AC 629 ms
6,820 KB
testcase_18 AC 757 ms
6,824 KB
testcase_19 AC 82 ms
6,820 KB
testcase_20 AC 713 ms
6,816 KB
testcase_21 AC 309 ms
6,816 KB
testcase_22 AC 605 ms
6,816 KB
testcase_23 AC 747 ms
6,820 KB
testcase_24 AC 850 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int n, m;
	cin >> n >> m;
	int l, r;
	vector<int> ans(n);
	for(int i = 0; i < m; i++)
	{
		cin >> l >> r;
		l--; r--;
		ans[r]++;
		if(l + 1 < n) ans[l + 1]--;
	}
	
	for(int i = 1; i < n; i++) ans[i] += ans[i - 1];
	for(int i = n - 1; i >= 0; i--) cout << ans[i] << endl;
	return 0;
}
0