結果
問題 |
No.2154 あさかつの参加人数
|
ユーザー |
![]() |
提出日時 | 2024-04-29 17:24:29 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 171 ms / 2,000 ms |
コード長 | 486 bytes |
コンパイル時間 | 2,212 ms |
コンパイル使用メモリ | 195,172 KB |
最終ジャッジ日時 | 2025-02-21 09:39:34 |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); 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 = 1; i <= n; i++) { cnt[i] += cnt[i - 1]; } for (int i = n - 1; i >= 0; i--) { cout << cnt[i] << "\n"; } }