# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1132934 | lopkus | 비밀 (JOI14_secret) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#define int long long
using namespace std;
/*
int ask(int x, int y) {
return min(x + 2 * (y / 2), (int)1e9);
}
*/
signed main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<int> a(n + 1);
for(int i = 0; i < n; i++) {
cin >> a[i];
}
int q;
cin >> q;
while(q--) {
int l, r;
cin >> l >> r;
int ans = a[l];
for(int i = l + 1; i <= r; i++) {
ans = ask(ans, a[i]);
}
cout << ans << "\n";
}
}