結果

問題 No.887 Collatz
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-06 21:01:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 5,340 ms
コンパイル使用メモリ 79,192 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-07-22 11:57:40
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,440 KB
testcase_01 AC 135 ms
41,152 KB
testcase_02 AC 134 ms
41,492 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 141 ms
41,464 KB
testcase_06 AC 136 ms
41,428 KB
testcase_07 AC 132 ms
41,516 KB
testcase_08 AC 138 ms
41,512 KB
testcase_09 AC 139 ms
41,428 KB
testcase_10 AC 137 ms
41,664 KB
testcase_11 AC 123 ms
41,664 KB
testcase_12 AC 139 ms
41,088 KB
testcase_13 AC 124 ms
41,516 KB
testcase_14 AC 135 ms
41,328 KB
testcase_15 AC 136 ms
41,356 KB
testcase_16 AC 137 ms
41,556 KB
testcase_17 AC 137 ms
41,648 KB
testcase_18 AC 139 ms
41,180 KB
testcase_19 AC 138 ms
41,600 KB
testcase_20 AC 133 ms
41,556 KB
testcase_21 AC 138 ms
41,464 KB
testcase_22 AC 136 ms
41,560 KB
testcase_23 AC 138 ms
41,272 KB
testcase_24 AC 144 ms
41,428 KB
testcase_25 AC 136 ms
41,500 KB
testcase_26 AC 140 ms
41,532 KB
testcase_27 AC 138 ms
41,552 KB
testcase_28 AC 140 ms
41,572 KB
testcase_29 AC 142 ms
41,356 KB
testcase_30 AC 146 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.IntStream;

public class x {
    public static void main(String[] args) {
        int[] xs = IntStream.iterate(
                new Scanner(System.in).nextInt(), p -> p % 2 == 0 ? p / 2 : 3 * p + 1
        )
                .limit(400L)
                .toArray();
        int index = 0;
        for (int x : xs) {
            if (x == 1) break;
            index++;
        }
        System.out.println(index);
        System.out.println(Arrays.stream(xs).max().getAsInt());
    }
}
0