結果

問題 No.2154 あさかつの参加人数
ユーザー aradarad
提出日時 2023-07-06 18:40:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,007 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 4,359 ms
コンパイル使用メモリ 261,612 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 14:06:05
合計ジャッジ時間 27,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 962 ms
5,248 KB
testcase_01 AC 1,007 ms
5,376 KB
testcase_02 AC 989 ms
5,376 KB
testcase_03 AC 989 ms
5,376 KB
testcase_04 AC 969 ms
5,376 KB
testcase_05 AC 172 ms
5,376 KB
testcase_06 AC 536 ms
5,376 KB
testcase_07 AC 553 ms
5,376 KB
testcase_08 AC 592 ms
5,376 KB
testcase_09 AC 351 ms
5,376 KB
testcase_10 AC 594 ms
5,376 KB
testcase_11 AC 871 ms
5,376 KB
testcase_12 AC 581 ms
5,376 KB
testcase_13 AC 275 ms
5,376 KB
testcase_14 AC 599 ms
5,376 KB
testcase_15 AC 572 ms
5,376 KB
testcase_16 AC 645 ms
5,376 KB
testcase_17 AC 637 ms
5,376 KB
testcase_18 AC 752 ms
5,376 KB
testcase_19 AC 82 ms
5,376 KB
testcase_20 AC 701 ms
5,376 KB
testcase_21 AC 311 ms
5,376 KB
testcase_22 AC 618 ms
5,376 KB
testcase_23 AC 741 ms
5,376 KB
testcase_24 AC 989 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n,m;
    cin >> n >> m;
    vector<int> imos(n+1);
    rep(i,m){
        int l,r;
        cin >> l >> r;
        r--;
        imos[r]++;
        imos[l]--;
    }
    rep(i,n) imos[i+1] += imos[i];
    reverse(imos.begin(),imos.end());
    for(int i = 1;i <= n;i++) cout << imos[i] << endl;
}
0