結果

問題 No.887 Collatz
ユーザー ks2mks2m
提出日時 2019-09-20 22:26:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-09-14 18:17:35
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,772 KB
testcase_01 AC 132 ms
53,840 KB
testcase_02 AC 131 ms
53,864 KB
testcase_03 AC 134 ms
53,880 KB
testcase_04 AC 134 ms
54,260 KB
testcase_05 AC 131 ms
54,096 KB
testcase_06 AC 133 ms
53,792 KB
testcase_07 AC 133 ms
53,992 KB
testcase_08 AC 133 ms
53,964 KB
testcase_09 AC 134 ms
54,036 KB
testcase_10 AC 132 ms
53,788 KB
testcase_11 AC 133 ms
54,116 KB
testcase_12 AC 133 ms
53,840 KB
testcase_13 AC 134 ms
53,948 KB
testcase_14 AC 132 ms
53,888 KB
testcase_15 AC 131 ms
54,020 KB
testcase_16 AC 131 ms
54,468 KB
testcase_17 AC 134 ms
54,092 KB
testcase_18 AC 131 ms
53,916 KB
testcase_19 AC 129 ms
53,956 KB
testcase_20 AC 130 ms
53,832 KB
testcase_21 AC 131 ms
53,980 KB
testcase_22 AC 132 ms
54,072 KB
testcase_23 AC 132 ms
53,820 KB
testcase_24 AC 134 ms
53,764 KB
testcase_25 AC 133 ms
54,188 KB
testcase_26 AC 131 ms
54,020 KB
testcase_27 AC 132 ms
53,992 KB
testcase_28 AC 131 ms
53,828 KB
testcase_29 AC 134 ms
54,172 KB
testcase_30 AC 133 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		int i = 0;
		int max = n;
		while (n > 1) {
			if (n % 2 == 0) {
				n /= 2;
			} else {
				n = 3 * n + 1;
			}
			i++;
			max = Math.max(max, n);
		}
		System.out.println(i);
		System.out.println(max);
	}
}
0