本文主要是介绍743B. Chloe and the sequence codeforces,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<bits/stdc++.h>
typedef long long LL;
using namespace std;
int main()
{LL n,k,sum,x,y,flag;cin>>n>>k;if(k%2){cout<<1<<endl;}else{sum=0;while(k){sum++;k/=2;if(k%2){break;}}cout<<sum+1<<endl;}return 0;
}
这篇关于743B. Chloe and the sequence codeforces的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!