| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 840852 | raul2008487 | Rack (eJOI19_rack) | C++17 | 1 ms | 292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
#define ll long long
#define vl vector<ll>
#define endl "\n"
#define all(v) v.begin(), v.end()
using namespace std;
const int sz = 2e5+5;
const ll inf = 100000000000000005;
const int mod = 1e9+7;
void solve(){
ll n,k,i,j,low,high,mid,level=1, res=1, x=1;
cin>>n>>k;
if(n > 59){
while(n>60){
x*=2;
x%=mod;
n--;
}
low = 1, high = (1<<60);
}
else{
low = 1, high = (1<<n);
}
while(low <= high){
mid = (low+high) >> 1;
if(low == high){
cout << res << endl;
return ;
}
if(k <= mid){
high = mid;
}
else{
low = mid+1;
ll ad = (1<<level-1);
ad%=mod;
ad*=x;
ad%=mod;
res += ad;
res%=mod;
}
level++;
}
cout << res << endl;
}
int main(){
ll t=1;
//cin>>t;
while(t--){
solve();
}
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
