이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
//i/o optimisations
#define endl "\n"
#define fastio ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
//data types & structures
typedef long long ll;
#define pq priority_queue
//graph structures
typedef vector<pair<ll,ll>> graph;
typedef vector<ll> nw_graph;
typedef pq<pair<ll,ll>> dij_q;
//constant values
const ll N=2e5+1;
const ll N6=1e6+1;
const ll INF=1e9+1;
const ll LOGN=18;
const ll MOD=1e9+7;
//operations
#define MID ((l+r)/2)
#define RANGE (r-l+1)
//pairs
#define f first
#define s second
//output
#define YES cout<<"YES"<<endl;
#define NO cout<<"NO"<<endl;
int main(){
fastio;
ll n, k;
cin>>n>>k; k--;
ll ans=1;
for(ll i=0; i<n; i++){
if(k&1<<i){
ans+=(1<<(n-i-1))%MOD; ans%=MOD;
}
}
cout<<ans%MOD;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |