結果

問題 No.887 Collatz
ユーザー 👑 p-adic
提出日時 2022-08-10 21:41:33
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 76,124 KB
最終ジャッジ日時 2025-01-30 20:04:53
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <vector>
#include <string>
#include <stdio.h>
#include <stdint.h>
#include <iomanip>
using namespace std;

using uint = unsigned int;
using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define GETLINE( A ) string A; getline( cin , A ) 
#define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) 

int main()
{

  CIN( ll , n );
  ll i = 0;
  ll n_max = n;

  while( n != 1 ){

    if( n % 2 == 0 ){

      n /= 2;

    } else {

      n = 3 * n + 1;

    }

    i++;

    if( n_max < n ){

      n_max = n;

    }
    
  }

  cout << i << endl;
  cout << n_max << endl;
  return 0;

}
0