#45148: 一直TLE?


austin131130@gmail.com (索尼克)

學校 : 國立中央大學
編號 : 271683
來源 : [36.229.250.201]
最後登入時間 :
2025-01-11 21:46:52
q001. "421"循環 | From: [36.229.198.209] | 發表日期 : 2025-01-15 00:41

過不了,真的過不了
#include <iostream>
using namespace std;
int main()
{
    int n;

    while (cin >> n)
    {
        int count = 0;
        while (n != 4)
        {
            if (n % 2 == 0)
            {
                n /= 2;
            }
            else
            {
                n = (n * 3 + 1)/2;
                count++;
            }
            count++;
        }
        cout << count << endl;
    }
    return 0;
}
 
ZeroJudge Forum