結果

問題 No.2154 あさかつの参加人数
ユーザー みここみここ
提出日時 2022-12-10 17:37:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 982 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 67,968 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-10-14 23:48:50
合計ジャッジ時間 21,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
5,248 KB
testcase_01 AC 964 ms
5,248 KB
testcase_02 AC 956 ms
5,248 KB
testcase_03 AC 981 ms
5,376 KB
testcase_04 AC 982 ms
5,376 KB
testcase_05 AC 173 ms
5,376 KB
testcase_06 AC 544 ms
5,248 KB
testcase_07 AC 546 ms
5,376 KB
testcase_08 AC 611 ms
5,376 KB
testcase_09 AC 342 ms
5,376 KB
testcase_10 AC 500 ms
5,376 KB
testcase_11 AC 870 ms
5,248 KB
testcase_12 AC 596 ms
5,248 KB
testcase_13 AC 275 ms
5,504 KB
testcase_14 AC 604 ms
5,248 KB
testcase_15 AC 573 ms
5,248 KB
testcase_16 AC 644 ms
5,376 KB
testcase_17 AC 640 ms
5,248 KB
testcase_18 AC 744 ms
5,248 KB
testcase_19 AC 81 ms
5,248 KB
testcase_20 AC 711 ms
5,248 KB
testcase_21 AC 303 ms
5,248 KB
testcase_22 AC 617 ms
5,248 KB
testcase_23 AC 738 ms
5,376 KB
testcase_24 AC 849 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
    int n, m;
    cin >> n >> m;
    int b[500005]{0};
    for (int i = 0; i < m; i++)
    {
        int l, r;
        cin >> r >> l;
        l--;
        b[l]++;
        b[r]--;
    }
    for (int i = 1; i <= n; i++)
    {
        b[i] += b[i - 1];
    }
    for (int i = n - 1; i >= 0; i--)
    {
        cout << b[i] << endl;
    }
}
0