結果

問題 No.2154 あさかつの参加人数
ユーザー yicodeyicode
提出日時 2023-06-05 15:48:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 863 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 172,000 KB
実行使用メモリ 11,164 KB
最終ジャッジ日時 2024-06-09 05:11:24
合計ジャッジ時間 22,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 862 ms
10,984 KB
testcase_01 AC 856 ms
11,068 KB
testcase_02 AC 838 ms
10,988 KB
testcase_03 AC 822 ms
11,088 KB
testcase_04 AC 863 ms
11,164 KB
testcase_05 AC 155 ms
6,944 KB
testcase_06 AC 488 ms
8,464 KB
testcase_07 AC 483 ms
7,680 KB
testcase_08 AC 537 ms
7,808 KB
testcase_09 AC 314 ms
6,944 KB
testcase_10 AC 443 ms
7,040 KB
testcase_11 AC 767 ms
10,068 KB
testcase_12 AC 520 ms
8,260 KB
testcase_13 AC 251 ms
6,940 KB
testcase_14 AC 530 ms
8,648 KB
testcase_15 AC 519 ms
7,552 KB
testcase_16 AC 573 ms
8,704 KB
testcase_17 AC 544 ms
8,856 KB
testcase_18 AC 654 ms
9,672 KB
testcase_19 AC 73 ms
6,940 KB
testcase_20 AC 618 ms
8,832 KB
testcase_21 AC 275 ms
6,940 KB
testcase_22 AC 542 ms
7,040 KB
testcase_23 AC 650 ms
9,448 KB
testcase_24 AC 760 ms
10,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
long long GCD(long long a,long long b) {
  if(a%b == 0) return b;
  return GCD(b,a%b);
}
int main() {
  long long N,M; cin >> N >> M;
  vector<pair<int,int>> A(M);
  vector<int> X(N + 1,0);
  for(int i = 0; i < M; i++) {
    int a,b; cin >> a >> b;
    A[i] = {a,b};
    X[b]++;
    X[a + 1]--;
  }
  
  vector<int> Q(N + 1,0);
  for(int i = 1; i <= N; i++) {
    Q[i] = Q[i - 1] + X[i];
  }
  for(int i = N; i >= 1; i--) {
    cout << Q[i] << endl;
  }
}
0