#include <iostream>
using namespace std;
long long n, k;
long long getNum(long long pos, int p2, int seqPos)
{
while(seqPos+(1LL<<(n-1-p2))<=pos)
{
seqPos += (1LL<<(n-1-p2));
p2++;
}
if(pos==seqPos) return (1LL<<(p2-1));
long long nextSeqPos = seqPos+(1LL<<(n-1-p2));
long long diff = pos - seqPos;
return getNum(nextSeqPos+diff, p2, seqPos) - (1<<p2);
}
int main()
{
cin >> n >> k;
if(k==1)
{
cout << "1" << '\n';
return 0;
}
//for(int k = 1;k<=(1<<n);k++)
cout << getNum(k, 0, 1) << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |