This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n; cin >> n;
vector<int> a(n);
for(auto &i: a) cin >> i;
vector<int> s(n);
for(int i=0; i<n; i++){
s[i] = a[i];
while(s[i] %2==0){
s[i]/=2;
}
}
int pos=0, e=0;
int q; cin >> q;
while(q--){
int x; cin >> x;
while(pos<n&&e+a[pos]/s[pos]<x){
e+=a[pos]/s[pos];
pos++;
}
cout<<s[pos]<<"\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... |