이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
bool debug = false;
int mod = 1e9+7;
signed main(){
	ios_base::sync_with_stdio(false); cin.tie(0);
	int n, q, temp; cin >> n;
	vector<pair<int, int>> v(n);
	for (int i =0 ;i < n; ++i){
		cin >> v[i].first;
	}
	for (int i = n-1; i >= 0; --i){
		if(v[i].first%2 == 0){
			temp = (v[i].first&(-v[i].first+1));
			v[i].second = temp;
			v[i].first = v[i].first/temp;
			temp = v[i].first;
			v[i].first = v[i].second;
			v[i].second = temp;
		}
		else{
			v[i].second = v[i].first;
			v[i].first = 1;
		}
	}
	int sum = 0;
	vector<int> in(n);
	for (int i = 0; i < n; ++i){
		sum += v[i].first;
		in[i] = sum;
	}
	if(debug){
		for (int i = 0;i < n; ++i){
			cout << in[i] << ' ';
		}
	}
	cin >> q;
	for (int i = 0; i < q;++i){
		cin >> temp;
		cout << v[lower_bound(in.begin(), in.end(), temp)-in.begin()].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... |