# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
448768 | UltraFalcon | Rack (eJOI19_rack) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int int128_t
using namespace std;
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
const int limit = (1e9) + 7;
int n, k;
cin >> n >> k;
k--;
int i = n-1;
int r = 1;
while (i >= 0) {
if (k % 2 == 1) {
//assert(i < 60);
r = (r + ((1ll << i) % limit)) % limit;
}
k /= 2;
i--;
}
cout << r % limit << "\n";
}