結果

問題 No.2154 あさかつの参加人数
ユーザー take000take000
提出日時 2022-12-09 21:30:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 201,224 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 20:30:47
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    cin.tie(0)->sync_with_stdio(0);

    int N, M;
    cin >> N >> M;

    vector<int> imos(N + 1);
    rep(i, M) {
        int r, l;
        cin >> r >> l;
        l--;
        imos[l]++;
        imos[r]--;
    }

    rep(i, N) imos[i + 1] += imos[i];
    for (int i = N - 1; i >= 0; --i)
        cout << imos[i] << "\n";

    return 0;
}
0