結果

問題 No.2154 あさかつの参加人数
ユーザー achapiachapi
提出日時 2024-11-21 19:54:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 201,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-11-21 19:54:33
合計ジャッジ時間 10,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
5,248 KB
testcase_01 AC 151 ms
5,248 KB
testcase_02 AC 154 ms
5,248 KB
testcase_03 AC 153 ms
5,248 KB
testcase_04 AC 167 ms
5,376 KB
testcase_05 AC 65 ms
5,248 KB
testcase_06 AC 114 ms
5,248 KB
testcase_07 AC 80 ms
5,248 KB
testcase_08 AC 77 ms
5,248 KB
testcase_09 AC 30 ms
5,248 KB
testcase_10 AC 70 ms
5,248 KB
testcase_11 AC 132 ms
5,248 KB
testcase_12 AC 107 ms
5,248 KB
testcase_13 AC 58 ms
5,248 KB
testcase_14 AC 110 ms
5,248 KB
testcase_15 AC 72 ms
5,248 KB
testcase_16 AC 106 ms
5,248 KB
testcase_17 AC 120 ms
5,248 KB
testcase_18 AC 131 ms
5,248 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 119 ms
5,248 KB
testcase_21 AC 25 ms
5,248 KB
testcase_22 AC 49 ms
5,248 KB
testcase_23 AC 121 ms
5,248 KB
testcase_24 AC 138 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int N, M;
	scanf("%d%d", &N, &M);
	vector<int> A(N + 1);
	for (int i = 0; i < M; i++){
		int L, R;
		scanf("%d%d", &L, &R);
		R--;
		A[R]++;
		A[L]--;
	}
	for (int i = 0; i < N; i++){
		A[i + 1] += A[i];
	}
	reverse(A.begin(), A.end());
	for (int i = 1; i <= N; i++){
		printf("%d\n", A[i]);
	}
}
0