結果

問題 No.36 素数が嫌い!
ユーザー tonyu0tonyu0
提出日時 2020-03-24 16:31:19
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 754 bytes
コンパイル時間 13,214 ms
コンパイル使用メモリ 399,336 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 06:03:57
合計ジャッジ時間 13,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,812 KB
testcase_01 AC 70 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 30 ms
6,944 KB
testcase_12 AC 87 ms
6,940 KB
testcase_13 AC 88 ms
6,940 KB
testcase_14 AC 56 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 0 ms
6,940 KB
testcase_19 AC 34 ms
6,940 KB
testcase_20 AC 90 ms
6,940 KB
testcase_21 AC 68 ms
6,944 KB
testcase_22 AC 68 ms
6,940 KB
testcase_23 AC 45 ms
6,944 KB
testcase_24 AC 61 ms
6,940 KB
testcase_25 AC 46 ms
6,944 KB
testcase_26 AC 82 ms
6,940 KB
testcase_27 AC 76 ms
6,940 KB
testcase_28 AC 80 ms
6,940 KB
testcase_29 AC 84 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn is_prime(n: u64) -> bool {
    let mut m = 2;
    while m * m <= n {
        if n % m == 0 {
            return false;
        }
        m += 1;
    }
    true
}

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: u64 = itr.next().unwrap().parse().unwrap();

    let mut m = 2u64;
    let mut div = Vec::new();
    while m * m <= n {
        if n % m == 0 {
            div.push(m);
            if n / m != m {
                div.push(n / m);
            }
        }
        m += 1;
    }

    for a in div {
        if !is_prime(a) {
            println!("YES");
            return;
        }
    }
    println!("NO");
}
0