이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
//ios_base::sync_with_stdio(0); cin.tie(0);
int n, q;
cin >> n;
int a[n];
for(int i=0; i<n; i++) cin >> a[i];
vector<pair<long long, long long> > v;
v.push_back(make_pair(0, 0));
for(int i=0; i<n; i++) {
long long x = a[i], count = 0;
while(x%2==0) {
x/=2;
count++;
}
long long m = (long long)1<<count;
v.push_back(make_pair(v.back().first+m, x));
}
cin >> q;
while(q--) {
long long x;
cin >> x;
int ans = upper_bound(v.begin(), v.end(), make_pair((long long)x, (long long)0)) - v.begin();
cout << v[ans].second << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |