結果

問題 No.2154 あさかつの参加人数
ユーザー MagentorMagentor
提出日時 2022-12-09 21:29:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 4,386 ms
コンパイル使用メモリ 261,084 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 20:21:33
合計ジャッジ時間 25,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
5,248 KB
testcase_01 AC 974 ms
5,248 KB
testcase_02 AC 980 ms
5,248 KB
testcase_03 AC 956 ms
5,248 KB
testcase_04 AC 960 ms
5,248 KB
testcase_05 AC 172 ms
5,248 KB
testcase_06 AC 544 ms
5,248 KB
testcase_07 AC 547 ms
5,248 KB
testcase_08 AC 604 ms
5,248 KB
testcase_09 AC 346 ms
5,248 KB
testcase_10 AC 495 ms
5,248 KB
testcase_11 AC 845 ms
5,248 KB
testcase_12 AC 598 ms
5,248 KB
testcase_13 AC 276 ms
5,248 KB
testcase_14 AC 595 ms
5,248 KB
testcase_15 AC 559 ms
5,248 KB
testcase_16 AC 656 ms
5,248 KB
testcase_17 AC 622 ms
5,248 KB
testcase_18 AC 755 ms
5,248 KB
testcase_19 AC 79 ms
5,248 KB
testcase_20 AC 693 ms
5,248 KB
testcase_21 AC 307 ms
5,248 KB
testcase_22 AC 623 ms
5,248 KB
testcase_23 AC 742 ms
5,248 KB
testcase_24 AC 865 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define rep2(i, m ,n) for (int i = (m); i < (long long)(n); i++)
#define REP(i, n) for (long long i = 1; i < (long long)(n); i++)
typedef long long ll;


int main() {
int n,m;cin>>n>>m;
  vector<int> imos(n+5,0);
  rep(i,m){
   int a,b;cin>>a>>b;
   //swap(a,b);
   imos[n-a]--;
   imos[n-b+1]++; 
  }
  int cum = 0;
  rep(i,n){
    cum += imos[i];
    cout << abs(cum) << endl;
  }
}
0