이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
unsigned long long i, j, k;
void narrow (int lower, int upper)
{
if (k % 2 == 0)
{
lower = (upper + lower) / 2 + 1;
k /= 2;
}
else
{
upper = (upper + lower) / 2;
k /= 2;
k++;
}
i = lower;
j = upper;
}
int main()
{
int n;
cin >> n >> k;
i = 1;
j = pow(2, n);
while (j != i)
{
narrow(i, j);
}
cout << i;
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... |