이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
#include<climits>
#include<numeric>
#include<queue>
#include<unordered_map>
#include<unordered_set>
#include<bitset>
#include<string.h>
#include<cmath>
#include<stack>
#define int uint64_t
using namespace std;
const int mod = 1e9 + 7;
int cdiv(int a, int b){
return (a + b - 1ll) / b;
}
int bpow(int a, int b){
if(a == 1 or b == 0)return 1;
if(a == 0)return 0; // watch out for 0^0
int ans = 1;
a %= mod;
while(b > 0){
if(b&1)ans = ans * a % mod;
a = a * a % mod;
b >>= 1;
}
return ans;
}
int inv(int x){
return bpow(x, mod-2);
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
int n, k;
cin >> n >> k;
n--;
int ans = 1, add = bpow(2,n);
while(k > 1){
if(!(k&1))ans = ans + add % mod;
n--;
add = bpow(2,n);
k = cdiv(k,2);
}
cout << ans << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |