結果

問題 No.2154 あさかつの参加人数
ユーザー nao109nao109
提出日時 2022-12-13 21:50:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 987 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 200,964 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 15:48:26
合計ジャッジ時間 25,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 952 ms
5,248 KB
testcase_01 AC 954 ms
5,248 KB
testcase_02 AC 959 ms
5,248 KB
testcase_03 AC 987 ms
5,248 KB
testcase_04 AC 980 ms
5,248 KB
testcase_05 AC 173 ms
5,248 KB
testcase_06 AC 541 ms
5,248 KB
testcase_07 AC 555 ms
5,248 KB
testcase_08 AC 619 ms
5,248 KB
testcase_09 AC 350 ms
5,248 KB
testcase_10 AC 484 ms
5,248 KB
testcase_11 AC 843 ms
5,248 KB
testcase_12 AC 585 ms
5,248 KB
testcase_13 AC 279 ms
5,248 KB
testcase_14 AC 602 ms
5,248 KB
testcase_15 AC 570 ms
5,248 KB
testcase_16 AC 660 ms
5,248 KB
testcase_17 AC 621 ms
5,248 KB
testcase_18 AC 742 ms
5,248 KB
testcase_19 AC 83 ms
5,248 KB
testcase_20 AC 709 ms
5,248 KB
testcase_21 AC 311 ms
5,248 KB
testcase_22 AC 604 ms
5,248 KB
testcase_23 AC 737 ms
5,248 KB
testcase_24 AC 861 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define fi first
#define se second
#define all(a) a.begin(),a.end()
int main(){
  int n,m;
  cin >> n >> m;
  vector<int> day(n);
  for(int i=0; i<m; ++i){
    int l,r;
    cin >> l >> r;
    day[n-l]++;
    day[n-r+1]--;
  }
  
  int cnt=0;
  for(int i=0; i<n; ++i){
    cnt+=day[i];
    cout << cnt << endl;
  }
  return 0;
}
0