結果

問題 No.2154 あさかつの参加人数
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2023-11-12 21:02:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 167,956 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 03:05:39
合計ジャッジ時間 23,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 917 ms
5,248 KB
testcase_01 AC 910 ms
5,376 KB
testcase_02 AC 921 ms
5,376 KB
testcase_03 AC 959 ms
5,376 KB
testcase_04 AC 940 ms
5,376 KB
testcase_05 AC 168 ms
5,376 KB
testcase_06 AC 529 ms
5,376 KB
testcase_07 AC 526 ms
5,376 KB
testcase_08 AC 578 ms
5,376 KB
testcase_09 AC 321 ms
5,376 KB
testcase_10 AC 474 ms
5,376 KB
testcase_11 AC 822 ms
5,376 KB
testcase_12 AC 553 ms
5,376 KB
testcase_13 AC 267 ms
5,376 KB
testcase_14 AC 581 ms
5,376 KB
testcase_15 AC 530 ms
5,376 KB
testcase_16 AC 669 ms
5,376 KB
testcase_17 AC 596 ms
5,376 KB
testcase_18 AC 727 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 653 ms
5,376 KB
testcase_21 AC 280 ms
5,376 KB
testcase_22 AC 599 ms
5,376 KB
testcase_23 AC 716 ms
5,376 KB
testcase_24 AC 807 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N, M; cin >> N >> M;
  vector<int> A(N);

  for (int i = 0; i < M; i++) {
    int L, R; cin >> L >> R;
    A.at(N - L)++;
    if (N - R + 1 != N) A.at(N - R + 1)--;
  }

  for (int i = 1; i < N; i++) A.at(i) += A.at(i - 1);
  for (int i : A) cout << i << endl;
}
0