結果

問題 No.2154 あさかつの参加人数
ユーザー ymmtr(せるたわーしーぷ!)ymmtr(せるたわーしーぷ!)
提出日時 2022-12-09 21:39:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 993 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 168,204 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-10-14 21:07:39
合計ジャッジ時間 22,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 987 ms
7,168 KB
testcase_01 AC 993 ms
7,040 KB
testcase_02 AC 985 ms
7,168 KB
testcase_03 AC 991 ms
7,168 KB
testcase_04 AC 980 ms
7,040 KB
testcase_05 AC 169 ms
5,248 KB
testcase_06 AC 545 ms
5,248 KB
testcase_07 AC 570 ms
5,760 KB
testcase_08 AC 610 ms
6,144 KB
testcase_09 AC 344 ms
5,248 KB
testcase_10 AC 504 ms
5,504 KB
testcase_11 AC 873 ms
6,656 KB
testcase_12 AC 605 ms
5,504 KB
testcase_13 AC 279 ms
5,248 KB
testcase_14 AC 603 ms
5,248 KB
testcase_15 AC 581 ms
6,016 KB
testcase_16 AC 672 ms
5,760 KB
testcase_17 AC 638 ms
5,248 KB
testcase_18 AC 774 ms
6,016 KB
testcase_19 AC 83 ms
5,248 KB
testcase_20 AC 703 ms
6,144 KB
testcase_21 AC 317 ms
5,248 KB
testcase_22 AC 617 ms
6,784 KB
testcase_23 AC 753 ms
6,144 KB
testcase_24 AC 854 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//B
#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
using ll = long long;
#define ALL(a)  (a).begin(),(a).end()
using v_vll = vector<vector<ll>>;
int main(){
    ll n,m;cin>>n>>m;
    vector<ll> data(n+10);
    ll l,r;
    for(ll i=0;i<m;i++){
        cin>>l>>r;
        data[n-l]++;
        data[n-r+1]--;

    }
    for(ll i=1;i<n+5;i++){
        data[i]+=data[i-1];
    }
    for(ll i=0;i<n;i++){
        cout<<data[i]<<endl;
    }
    //5,4,3,2,1
    // ,1, , , ,-1 , ,
}
0