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;
int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  int n;
  cin >> n;
  queue<pair<int, int>> q;
  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    int tz = __builtin_ctz(a);
    q.emplace(a >> tz, 1 << tz);
  }
  int qq;
  cin >> qq;
  long long prev = 0;
  while (qq--) {
    long long x;
    cin >> x;
    long long y = x;
    x -= prev;
    while (x > q.front().second) {
      x -= q.front().second;
      q.pop();
    }
    prev = y;
    cout << q.front().first << '\n';
    q.front().second -= x;
  }
  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... |