結果

問題 No.887 Collatz
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-02 13:31:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-11-24 03:07:29
合計ジャッジ時間 6,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,304 KB
testcase_01 AC 114 ms
41,456 KB
testcase_02 AC 93 ms
40,932 KB
testcase_03 AC 97 ms
41,324 KB
testcase_04 AC 107 ms
41,360 KB
testcase_05 AC 112 ms
40,872 KB
testcase_06 AC 116 ms
41,444 KB
testcase_07 AC 104 ms
41,264 KB
testcase_08 AC 112 ms
41,600 KB
testcase_09 AC 105 ms
41,056 KB
testcase_10 AC 104 ms
41,640 KB
testcase_11 AC 114 ms
41,216 KB
testcase_12 AC 100 ms
41,316 KB
testcase_13 AC 113 ms
41,140 KB
testcase_14 AC 126 ms
41,032 KB
testcase_15 AC 115 ms
40,956 KB
testcase_16 AC 110 ms
41,016 KB
testcase_17 AC 112 ms
41,212 KB
testcase_18 AC 108 ms
41,340 KB
testcase_19 AC 116 ms
41,084 KB
testcase_20 AC 101 ms
41,312 KB
testcase_21 AC 121 ms
41,200 KB
testcase_22 AC 113 ms
41,168 KB
testcase_23 AC 96 ms
41,952 KB
testcase_24 AC 114 ms
40,808 KB
testcase_25 AC 114 ms
41,084 KB
testcase_26 AC 116 ms
41,336 KB
testcase_27 AC 112 ms
41,208 KB
testcase_28 AC 114 ms
41,068 KB
testcase_29 AC 101 ms
41,468 KB
testcase_30 AC 114 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        int max = n;
        int count = 0;
        while(n != 1) {
            count++;
            if(n % 2 == 0) n /= 2;
            else n = 3 * n + 1;
            if(max < n) max = n;
        }
        System.out.println(count);
        System.out.println(max);
    }
}
0