1 solutions

  • 1
    @ 2025-4-19 16:01:25
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	int n;
    	cin>>n;
    	int cnt=0;
    	while(n!=1)
    	{
    		if(n%2!=0)
    		{
    			n=n*3+1;
    			cnt++;
    		}
    		else
    		{
    			n=n/2;
    			cnt++;
    		}
    	}
    	cout<<cnt;
    }

    Information

    ID
    667
    Time
    1000ms
    Memory
    256MiB
    Difficulty
    1
    Tags
    # Submissions
    46
    Accepted
    20
    Uploaded By