結果

問題 No.887 Collatz
ユーザー TejasPa99332085TejasPa99332085
提出日時 2019-09-20 21:27:30
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 156,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 16:19:19
合計ジャッジ時間 2,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n;
	cin >> n;
	int ans = n;
	int c = 0;
	while(n > 1){
		if(n&1)
			n = 3*n + 1;
		else
			n /= 2;
		ans = max(ans,n);
		c++;
	}
	cout << c << "\n" << ans << "\n";
	return 0;
}
0