結果
問題 | No.817 Coin donation |
ユーザー | severrabaen |
提出日時 | 2019-04-21 14:54:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 1,397 ms |
コンパイル使用メモリ | 163,776 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 18:12:45 |
合計ジャッジ時間 | 4,238 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
//↓template↓ #include "bits/stdc++.h" using namespace std; #define Would #define you #define all(n) n.begin(),n.end() const long long INF = 1e18; const long long MOD = 1e9 + 7; const double pi = acos(-1); const int SIZE = 1 << 17; int dx[] = { 1,0 }, dy[] = { 0,1 }, alp[30]; long long fac[200005], finv[200005], inv[200005]; vector<long long>dij; struct edge { long long to, cost; }; vector<vector<edge> >G; long long mod_pow(long long a, long long b) { long long res = 1; while (b) { if (b & 1) { res = res * a%MOD; } a = a * a%MOD; b >>= 1; } return res; } void addedge(int from, int to, int cost) { G[from].push_back({ to,cost }); G[to].push_back({ from,cost }); } //↑template↑ long long a, b, imos[100005], mon; int main() { cin >> a >> b; for (int i = 0; i < a; ++i) { int n, m; cin >> n >> m; --n; ++imos[n]; --imos[m]; } for (int i = 1; i < a; ++i) { imos[i] += imos[i - 1]; } for (int i = 0; i < a; ++i) { mon += imos[i]; if (mon >= b) { cout << i + 1 << endl; return 0; } } }