結果

問題 No.2154 あさかつの参加人数
ユーザー kpinkcatkpinkcat
提出日時 2023-09-24 13:14:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,003 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 203,152 KB
実行使用メモリ 11,072 KB
最終ジャッジ日時 2024-07-17 14:06:50
合計ジャッジ時間 25,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,003 ms
11,072 KB
testcase_01 AC 988 ms
11,040 KB
testcase_02 AC 998 ms
10,964 KB
testcase_03 AC 985 ms
11,008 KB
testcase_04 AC 994 ms
11,072 KB
testcase_05 AC 174 ms
6,940 KB
testcase_06 AC 561 ms
6,940 KB
testcase_07 AC 580 ms
8,276 KB
testcase_08 AC 608 ms
9,016 KB
testcase_09 AC 350 ms
7,296 KB
testcase_10 AC 514 ms
7,680 KB
testcase_11 AC 867 ms
10,136 KB
testcase_12 AC 615 ms
7,748 KB
testcase_13 AC 284 ms
6,944 KB
testcase_14 AC 620 ms
7,552 KB
testcase_15 AC 580 ms
8,688 KB
testcase_16 AC 672 ms
8,508 KB
testcase_17 AC 653 ms
7,552 KB
testcase_18 AC 785 ms
8,888 KB
testcase_19 AC 83 ms
6,940 KB
testcase_20 AC 734 ms
9,088 KB
testcase_21 AC 310 ms
7,040 KB
testcase_22 AC 618 ms
10,620 KB
testcase_23 AC 758 ms
9,088 KB
testcase_24 AC 893 ms
10,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using ll = long long;
using namespace std;


int main()
{
    ll n, m;
    cin >> n >> m;
    vector<ll> d(n), sum(n);
    for (int i = 0; i < m; i++){
        int be, end;
        cin >> be >> end;
        d[n-be]++;
        if (end != 1) d[n- end + 1]--;
    }
    for (int i = 0; i < n; i++){
        sum[i] += d[i];
        if (i) sum[i] += sum[i-1];
        cout << sum[i] << endl;
    }
}
0