hdu 1210 简单数学模拟

     不需要多说啥了吧

#include
using namespace std;
#include
int main()
{
    int n;
    while(cin>>n)
    {
        int ans=1,t=2;
        while(t!=1)
        {
            if(t<=n)
                t*=2;
            else
                t=(t-n)*2-1;
            ans++;
        }
        cout<


 

你可能感兴趣的:(ACM)