結果

問題 No.2534 コラッツ数列
ユーザー momoyuumomoyuu
提出日時 2023-11-10 21:24:21
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 2,971 ms
コンパイル使用メモリ 243,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 01:02:46
合計ジャッジ時間 3,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    
    ll n;
    cin>>n;
    ll now = 0;
    while(true){
        if(n==1){
            now++;
            now++;
            break;
        }else{
            now++;
            if(n%2==0) n /= 2;
            else n = 3 * n + 1;
            now++;
            if(now>50) break;
        }
    }
    if(now<=50) {
        cout<<"Yes\n";
        cout<<now<<endl;
    }
    else cout<<"No\n";

}
0