結果

問題 No.2154 あさかつの参加人数
ユーザー ripityripity
提出日時 2022-12-09 21:39:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 3,163 ms
コンパイル使用メモリ 217,740 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 02:57:19
合計ジャッジ時間 19,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 721 ms
5,248 KB
testcase_01 AC 724 ms
5,376 KB
testcase_02 AC 725 ms
5,248 KB
testcase_03 AC 719 ms
5,248 KB
testcase_04 AC 723 ms
5,376 KB
testcase_05 AC 62 ms
5,248 KB
testcase_06 AC 345 ms
5,248 KB
testcase_07 AC 449 ms
5,248 KB
testcase_08 AC 508 ms
5,248 KB
testcase_09 AC 337 ms
5,248 KB
testcase_10 AC 394 ms
6,816 KB
testcase_11 AC 636 ms
6,816 KB
testcase_12 AC 439 ms
6,816 KB
testcase_13 AC 175 ms
6,820 KB
testcase_14 AC 415 ms
6,816 KB
testcase_15 AC 469 ms
6,820 KB
testcase_16 AC 491 ms
6,816 KB
testcase_17 AC 414 ms
6,820 KB
testcase_18 AC 555 ms
6,816 KB
testcase_19 AC 69 ms
6,816 KB
testcase_20 AC 523 ms
6,820 KB
testcase_21 AC 289 ms
6,816 KB
testcase_22 AC 574 ms
6,820 KB
testcase_23 AC 537 ms
6,816 KB
testcase_24 AC 630 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    vector<int> cnt(N+1);
    for( int i = 0; i < M; i++ ) {
        int L, R;
        cin >> L >> R;
        cnt[R-1]++;
        cnt[L]--;
    }
    for( int i = 0; i < N; i++ ) {
        cnt[i+1] += cnt[i];
    }
    for( int i = N-1; i >= 0; i-- ) {
        cout << cnt[i] << endl;
    }
}
0