結果

問題 No.2154 あさかつの参加人数
ユーザー kotamanegikotamanegi
提出日時 2022-12-02 21:47:53
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 2,639 ms
コンパイル使用メモリ 161,316 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-10-09 22:58:52
合計ジャッジ時間 25,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 995 ms
5,248 KB
testcase_01 AC 993 ms
5,248 KB
testcase_02 AC 987 ms
5,248 KB
testcase_03 AC 993 ms
5,376 KB
testcase_04 AC 986 ms
5,248 KB
testcase_05 AC 174 ms
5,248 KB
testcase_06 AC 557 ms
5,248 KB
testcase_07 AC 564 ms
5,248 KB
testcase_08 AC 611 ms
5,248 KB
testcase_09 AC 356 ms
5,248 KB
testcase_10 AC 499 ms
5,248 KB
testcase_11 AC 852 ms
5,248 KB
testcase_12 AC 603 ms
5,248 KB
testcase_13 AC 278 ms
5,248 KB
testcase_14 AC 608 ms
5,248 KB
testcase_15 AC 583 ms
5,248 KB
testcase_16 AC 669 ms
5,248 KB
testcase_17 AC 632 ms
5,248 KB
testcase_18 AC 769 ms
5,248 KB
testcase_19 AC 82 ms
5,248 KB
testcase_20 AC 714 ms
5,248 KB
testcase_21 AC 309 ms
5,248 KB
testcase_22 AC 617 ms
5,248 KB
testcase_23 AC 754 ms
5,248 KB
testcase_24 AC 866 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
int ans[600000];
int main(){
  int n,m;
  cin >> n >> m;
  for(int i = 0;i < m;++i){
  	int a,b;
    cin >> a >> b;
    ans[n - a] += 1;
    ans[n - b + 1] -= 1;
  }
  for(int i = 0;i < n;++i){
  	ans[i+1] += ans[i];
    cout << ans[i] << endl;
  }
}
0