이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define int long long
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int mod = 1e9 + 7;
const int LOG = 20;
const int maxn = 1e5 + 5;
signed main() {
int n;
cin >> n;
vector<int> v(n);
for(int &x : v) cin >> x;
int q;
cin >> q;
vector<pii> qus(q);
for(int i=0; i<q; i++) {
cin >> qus[i].first;
qus[i].second = i;
}
sort(qus.begin(), qus.end());
ll total = 0;
int j = 0;
vector<ll> ans(q);
for(int i=0; i<n; i++) {
int cnt = 0;
ll x = v[i];
while(x % 2 == 0) cnt++, x /= 2;
total += (1ll << cnt);
for(; j<q; j++) {
if(qus[j].first > total) break;
ans[qus[j].second] = x;
}
}
for(ll &x : ans) cout << x << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |