結果

問題 No.2534 コラッツ数列
ユーザー sirosaisirosai
提出日時 2024-12-12 21:47:53
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 13,117 ms
コンパイル使用メモリ 402,124 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-12 21:48:12
合計ジャッジ時間 14,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 WA -
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

// コラッツの問題
fn main() {
    input! {
        mut n:i32
    };
    let mut count = 1;
    loop {
        let next = match n {
            0 => 0,
            1 => break,
            i if i % 2 == 0 => 2 / n,
            _ => 3 * n + 1,
        };
        count += 1;

        n = next;
        count += 1;

        if count > 50 {
            println!("No");
            return;
        }
    }
    count += 1;

    println!("Yes");
    println!("{}", count);
}
0