結果

問題 No.2154 あさかつの参加人数
ユーザー MAHAYANAMAHAYANA
提出日時 2023-11-04 17:13:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 247,076 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-09-25 22:09:47
合計ジャッジ時間 23,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 907 ms
9,088 KB
testcase_01 AC 884 ms
9,088 KB
testcase_02 AC 904 ms
9,088 KB
testcase_03 AC 911 ms
9,088 KB
testcase_04 AC 910 ms
9,088 KB
testcase_05 AC 167 ms
8,064 KB
testcase_06 AC 520 ms
8,832 KB
testcase_07 AC 513 ms
6,944 KB
testcase_08 AC 563 ms
6,940 KB
testcase_09 AC 331 ms
6,940 KB
testcase_10 AC 474 ms
6,940 KB
testcase_11 AC 806 ms
8,576 KB
testcase_12 AC 563 ms
7,936 KB
testcase_13 AC 271 ms
7,168 KB
testcase_14 AC 573 ms
8,448 KB
testcase_15 AC 533 ms
6,940 KB
testcase_16 AC 613 ms
8,064 KB
testcase_17 AC 585 ms
8,832 KB
testcase_18 AC 689 ms
8,704 KB
testcase_19 AC 75 ms
6,944 KB
testcase_20 AC 634 ms
7,808 KB
testcase_21 AC 294 ms
6,944 KB
testcase_22 AC 595 ms
6,940 KB
testcase_23 AC 683 ms
8,576 KB
testcase_24 AC 785 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

int main(){
    int N, K;
    cin >> N >> K;

    vector<int> L(K), R(K);
    rep(i, 0, K){
        cin >> L[i] >> R[i];
    }

    vector<int> table(500100, 0);
    rep(i, 0, K){
        table[R[i]] += 1;
        table[L[i]+1] -= 1;
    }

    rep(i, 1, N+1){
        table[i] += table[i-1];
    }

    for(int i=N; i>0; --i){
        cout << table[i] << endl;
    } 

    return 0;
}
0