結果

問題 No.2154 あさかつの参加人数
ユーザー Ryuki87241978Ryuki87241978
提出日時 2022-12-09 22:04:15
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,713 ms
コンパイル使用メモリ 163,140 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 22:02:06
合計ジャッジ時間 23,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 962 ms
5,248 KB
testcase_01 AC 979 ms
5,248 KB
testcase_02 AC 962 ms
5,248 KB
testcase_03 AC 970 ms
5,248 KB
testcase_04 AC 980 ms
5,248 KB
testcase_05 AC 171 ms
5,248 KB
testcase_06 AC 543 ms
5,248 KB
testcase_07 AC 554 ms
5,248 KB
testcase_08 AC 597 ms
5,248 KB
testcase_09 AC 355 ms
5,248 KB
testcase_10 AC 502 ms
5,248 KB
testcase_11 AC 850 ms
5,248 KB
testcase_12 AC 586 ms
5,248 KB
testcase_13 AC 276 ms
5,248 KB
testcase_14 AC 595 ms
5,248 KB
testcase_15 AC 579 ms
5,248 KB
testcase_16 AC 642 ms
5,248 KB
testcase_17 AC 621 ms
5,248 KB
testcase_18 AC 751 ms
5,248 KB
testcase_19 AC 81 ms
5,248 KB
testcase_20 AC 690 ms
5,248 KB
testcase_21 AC 316 ms
5,248 KB
testcase_22 AC 612 ms
5,248 KB
testcase_23 AC 731 ms
5,248 KB
testcase_24 AC 844 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    
    int N, M;
    cin >> N >> M;
    vector<int> dp(N+1);
    for(int i=0; i<M; i++) {
        int L, R;
        cin >> L >> R;
        dp[N-L] += 1;
        dp[N-R+1] -= 1;
    }
    for(int i=1; i<N; i++) {
        dp[i] += dp[i-1];
    }
    for(int i=0; i<N; i++) {
        cout << dp[i] << endl;
    }
    return 0;

}
0