結果

問題 No.2154 あさかつの参加人数
ユーザー yansi819yansi819
提出日時 2024-03-19 13:02:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 4,025 ms
コンパイル使用メモリ 261,476 KB
実行使用メモリ 7,372 KB
最終ジャッジ日時 2024-09-30 05:26:48
合計ジャッジ時間 23,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 830 ms
7,368 KB
testcase_01 AC 826 ms
7,372 KB
testcase_02 AC 820 ms
7,368 KB
testcase_03 AC 823 ms
7,372 KB
testcase_04 AC 824 ms
7,368 KB
testcase_05 AC 149 ms
6,816 KB
testcase_06 AC 486 ms
6,820 KB
testcase_07 AC 482 ms
6,816 KB
testcase_08 AC 522 ms
6,820 KB
testcase_09 AC 307 ms
6,816 KB
testcase_10 AC 434 ms
6,816 KB
testcase_11 AC 739 ms
7,112 KB
testcase_12 AC 515 ms
6,816 KB
testcase_13 AC 242 ms
6,820 KB
testcase_14 AC 521 ms
6,816 KB
testcase_15 AC 486 ms
6,824 KB
testcase_16 AC 599 ms
6,816 KB
testcase_17 AC 554 ms
6,860 KB
testcase_18 AC 654 ms
6,820 KB
testcase_19 AC 70 ms
6,820 KB
testcase_20 AC 609 ms
6,816 KB
testcase_21 AC 273 ms
6,816 KB
testcase_22 AC 523 ms
7,040 KB
testcase_23 AC 623 ms
6,820 KB
testcase_24 AC 731 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;

int N, M;
ll A[505050];

int main() {
  cin >> N >> M;
  for (int i = 1; i <= M; i++) {
    int L, R; cin >> L >> R;
    A[L]++;
    A[R - 1]--;
  }
  for (int i = N; i >= 1; i--) {
    cout << A[i] << endl;
    A[i - 1] += A[i];
  }
  return 0;
}
0