# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
576527 | 2022-06-13T07:16:29 Z | Jassar | Fountain (eJOI20_fountain) | C++14 | 1500 ms | 3948 KB |
#include <bits/stdc++.h> #define ll long long using namespace std; int main() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); ll n,q; cin >> n >> q; vector<pair<ll , ll>> v; stack<ll> s; ll p[n]; for (ll i=0; n>i; i++) { p[i] = 0; } ll sum[n]; for (ll i=0; n>i; i++) { ll a,b; cin >> a >> b; v.push_back({a , b}); sum[i] = v[i].second; if (i > 0) sum[i] += sum[i-1]; } while (q--) { ll a,b; cin >> a >> b; a--; for (ll i=0; n>i; i++) { if (a == 0 && sum[i] >= b) { cout << i + 1 << endl; a = -3; break; } if (a > 0 && sum[i] - sum[a - 1] >= b) { cout << i + 1 << endl; a = -3; break; } } if (a != -3) { cout << 0 << endl; } } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1589 ms | 3948 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |