# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
988861 | user736482 | Rack (eJOI19_rack) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
long long a,b,c;
int main()
{
cin>>a>>b;
b--;
while(a!=0){
a--;
c=c*2%1e9+7;
c+=b%2;
b/=2;
}
cout<<c+1;
return 0;
}