結果
問題 |
No.3039 配信者
|
ユーザー |
![]() |
提出日時 | 2025-05-05 00:28:55 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 188 ms / 2,000 ms |
コード長 | 553 bytes |
コンパイル時間 | 3,695 ms |
コンパイル使用メモリ | 275,900 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-05-05 00:29:05 |
合計ジャッジ時間 | 9,358 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { cin.tie(nullptr)->sync_with_stdio(false); int n, h; cin >> n >> h; vector<int> sum(h + 1); rep(_, n) { int a, b; cin >> a >> b; sum[a]++, sum[b + 1]--; } rep(i, h) sum[i + 1] += sum[i]; int ans = 0; rep(i, h + 1) ans = max(ans, sum[i]); cout << ans << '\n'; return 0; }