| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 580984 | AngusWong | Intercastellar (JOI22_ho_t1) | C++17 | 457 ms | 9164 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll n, q, x, a[200001], cnt[200001];
int main() {
cin >> n;
for (int i=1; i<=n; i++){
cin >> a[i];
cnt[i]=1;
while (a[i]%2==0) a[i]/=2, cnt[i]*=2;
cnt[i]+=cnt[i-1];
}
cin >> q;
while (q--){
cin >> x;
ll p=lower_bound(cnt+1, cnt+n+1, x)-cnt;
cout << a[p] << "\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... | ||||
