# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
840856 | raul2008487 | Rack (eJOI19_rack) | C++17 | 8 ms | 7928 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 = 2e6+5;
const ll inf = 100000000000000005;
const int mod = 1e9+7;
ll tp[sz];
ll rec(ll k, ll n){
if(n==0){
return k;
}
ll lc = k/2 + k%2;
ll rc = k/2;
if(lc == rc){
return (tp[n-1] + rec(rc, n-1))%mod;
}
return rec(lc,n-1);
}
void solve(){
ll n,k,i,j;
cin>>n>>k;
tp[0] = 1;
for(i=1;i<=n;i++){
tp[i] = tp[i-1] * 2;
tp[i] %= mod;
}
cout << rec(k, n) << 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... |