結果

問題 No.887 Collatz
ユーザー warm4C0warm4C0
提出日時 2023-05-07 19:43:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 1,419 ms
コンパイル使用メモリ 158,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 16:24:53
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

class Ans {
public:
	ll i1 = 1;
	ll n_max = 1;
	Ans(ll _i1, ll _n_max) {
		i1 = _i1;
		n_max = _n_max;
	}
};

Ans solve(ll n0) {
	Ans ans(1, n0);

	ll i = 1, x = n0;
	while(x != 1) {
		if (x&1) {
			x = 3*x+1;
		} else {
			x = x>>1;
		}
		ans.n_max = max(ans.n_max, x);
		i++;
	}
	ans.i1 = --i;

	return ans;
}

int main() {
	ll n0;
	cin >> n0;

	Ans ans = solve(n0);

	cout << ans.i1 << endl << ans.n_max << endl;

	return 0;
}
0