結果

問題 No.2154 あさかつの参加人数
ユーザー SSRSSSRS
提出日時 2022-12-09 21:36:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 168,020 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-10-14 20:57:37
合計ジャッジ時間 20,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 870 ms
9,088 KB
testcase_01 AC 890 ms
9,088 KB
testcase_02 AC 895 ms
9,088 KB
testcase_03 AC 890 ms
8,960 KB
testcase_04 AC 925 ms
8,960 KB
testcase_05 AC 167 ms
6,016 KB
testcase_06 AC 511 ms
7,680 KB
testcase_07 AC 504 ms
6,272 KB
testcase_08 AC 539 ms
6,272 KB
testcase_09 AC 325 ms
5,248 KB
testcase_10 AC 464 ms
5,888 KB
testcase_11 AC 790 ms
8,192 KB
testcase_12 AC 549 ms
7,040 KB
testcase_13 AC 256 ms
5,632 KB
testcase_14 AC 544 ms
7,296 KB
testcase_15 AC 538 ms
6,016 KB
testcase_16 AC 613 ms
7,424 KB
testcase_17 AC 585 ms
7,808 KB
testcase_18 AC 691 ms
8,192 KB
testcase_19 AC 77 ms
5,248 KB
testcase_20 AC 644 ms
7,296 KB
testcase_21 AC 297 ms
5,248 KB
testcase_22 AC 576 ms
5,248 KB
testcase_23 AC 680 ms
7,936 KB
testcase_24 AC 776 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> L(M), R(M);
  for (int i = 0; i < M; i++){
    cin >> L[i] >> R[i];
    R[i]--;
  }
  vector<int> imos(N + 1, 0);
  for (int i = 0; i < M; i++){
    imos[R[i]]++;
    imos[L[i]]--;
  }
  for (int i = 0; i < N; i++){
    imos[i + 1] += imos[i];
  }
  for (int i = N - 1; i >= 0; i--){
    cout << imos[i] << endl;
  }
}
0