結果

問題 No.2534 コラッツ数列
ユーザー kusagame12kusagame12
提出日時 2024-03-04 18:47:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 76,468 KB
実行使用メモリ 55,876 KB
最終ジャッジ日時 2024-09-29 17:30:54
合計ジャッジ時間 7,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,904 KB
testcase_01 AC 133 ms
53,868 KB
testcase_02 AC 136 ms
53,972 KB
testcase_03 AC 135 ms
53,864 KB
testcase_04 AC 131 ms
53,900 KB
testcase_05 AC 135 ms
54,424 KB
testcase_06 AC 137 ms
54,084 KB
testcase_07 AC 135 ms
54,076 KB
testcase_08 AC 138 ms
54,392 KB
testcase_09 AC 139 ms
54,016 KB
testcase_10 AC 144 ms
53,944 KB
testcase_11 AC 126 ms
53,936 KB
testcase_12 AC 127 ms
53,580 KB
testcase_13 AC 123 ms
54,040 KB
testcase_14 AC 118 ms
54,052 KB
testcase_15 AC 121 ms
53,792 KB
testcase_16 AC 133 ms
54,156 KB
testcase_17 AC 134 ms
54,220 KB
testcase_18 AC 133 ms
54,084 KB
testcase_19 AC 120 ms
53,776 KB
testcase_20 AC 125 ms
54,080 KB
testcase_21 AC 137 ms
54,020 KB
testcase_22 AC 142 ms
53,984 KB
testcase_23 AC 134 ms
54,404 KB
testcase_24 AC 135 ms
54,028 KB
testcase_25 AC 121 ms
53,728 KB
testcase_26 AC 122 ms
53,840 KB
testcase_27 AC 120 ms
55,876 KB
testcase_28 AC 120 ms
53,920 KB
testcase_29 AC 120 ms
54,000 KB
testcase_30 AC 131 ms
53,948 KB
testcase_31 AC 122 ms
53,960 KB
testcase_32 AC 129 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
       
        Scanner sc = new Scanner(System.in);
        
        int N = sc.nextInt();
       
        int step = 1;
        int nn = N;
        while(step <= 50){
            
            step++;
            
            if(nn == 1){
                System.out.println("Yes\n"+step);
                return;
            }
            
            if(nn % 2 == 0){
                nn /= 2;
            }else{
                nn = 3 * nn + 1;
            }
            
            step++;
            
        }
      
        System.out.println("No");
        
    }
   
}
0