結果

問題 No.887 Collatz
ユーザー watarimaycry2watarimaycry2
提出日時 2019-09-20 22:24:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 42,528 KB
最終ジャッジ日時 2024-09-14 18:14:46
合計ジャッジ時間 8,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,480 KB
testcase_01 AC 155 ms
42,008 KB
testcase_02 AC 142 ms
41,804 KB
testcase_03 AC 143 ms
42,216 KB
testcase_04 AC 144 ms
42,020 KB
testcase_05 AC 157 ms
42,176 KB
testcase_06 AC 158 ms
42,372 KB
testcase_07 AC 159 ms
41,976 KB
testcase_08 AC 159 ms
42,376 KB
testcase_09 AC 158 ms
42,440 KB
testcase_10 AC 153 ms
42,440 KB
testcase_11 AC 141 ms
42,060 KB
testcase_12 AC 158 ms
42,376 KB
testcase_13 AC 155 ms
42,300 KB
testcase_14 AC 146 ms
42,044 KB
testcase_15 AC 156 ms
42,276 KB
testcase_16 AC 157 ms
42,372 KB
testcase_17 AC 154 ms
42,496 KB
testcase_18 AC 149 ms
41,984 KB
testcase_19 AC 156 ms
42,152 KB
testcase_20 AC 144 ms
42,016 KB
testcase_21 AC 154 ms
41,992 KB
testcase_22 AC 140 ms
41,844 KB
testcase_23 AC 155 ms
42,412 KB
testcase_24 AC 153 ms
42,528 KB
testcase_25 AC 156 ms
42,188 KB
testcase_26 AC 156 ms
42,372 KB
testcase_27 AC 159 ms
42,056 KB
testcase_28 AC 158 ms
42,272 KB
testcase_29 AC 144 ms
41,724 KB
testcase_30 AC 156 ms
42,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void myout(Object text){//standard output
		System.out.println(text);
	}
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		//String tmp = sc.next();
		//int tmp = sc.nextInt();
		//Long tmp = sc.nextLong();
		Long n = sc.nextLong();
		Long m = n;
		int i = 0;
		while(n != 1){
		    if(n % 2 == 0){
		        n = n / 2;
		    }else{
		        n = 3 * n + 1;
		    }
		    i++;
		    m = Math.max(m,n);
		}
		myout(i + "\n" + m);
	}
}
0