結果

問題 No.2154 あさかつの参加人数
ユーザー 👑 CleyLCleyL
提出日時 2022-12-20 23:36:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 990 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 73,088 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 02:10:55
合計ジャッジ時間 21,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 981 ms
5,248 KB
testcase_01 AC 990 ms
5,248 KB
testcase_02 AC 968 ms
5,248 KB
testcase_03 AC 979 ms
5,248 KB
testcase_04 AC 987 ms
5,248 KB
testcase_05 AC 172 ms
5,248 KB
testcase_06 AC 550 ms
5,248 KB
testcase_07 AC 548 ms
5,248 KB
testcase_08 AC 614 ms
5,248 KB
testcase_09 AC 354 ms
5,248 KB
testcase_10 AC 511 ms
5,248 KB
testcase_11 AC 851 ms
5,248 KB
testcase_12 AC 602 ms
5,248 KB
testcase_13 AC 280 ms
5,248 KB
testcase_14 AC 609 ms
5,248 KB
testcase_15 AC 578 ms
5,248 KB
testcase_16 AC 661 ms
5,248 KB
testcase_17 AC 632 ms
5,248 KB
testcase_18 AC 748 ms
5,248 KB
testcase_19 AC 83 ms
5,248 KB
testcase_20 AC 703 ms
5,248 KB
testcase_21 AC 323 ms
5,248 KB
testcase_22 AC 617 ms
5,248 KB
testcase_23 AC 752 ms
5,248 KB
testcase_24 AC 852 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
  int n,m;cin>>n>>m;
  vector<int> A(n+1);
  for(int i = 0; m > i; i++){
    int x,y;cin>>x>>y;
    A[n-x]++;
    A[n-y+1]--;
  }
  int nw = 0;
  for(int i = 0; n > i; i++){
    nw += A[i];
    cout << nw << endl;
  }
}
0