結果

問題 No.2 素因数ゲーム
ユーザー Takumi WatanabeTakumi Watanabe
提出日時 2024-03-15 19:10:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 1,067 bytes
コンパイル時間 10,859 ms
コンパイル使用メモリ 390,388 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 00:03:12
合計ジャッジ時間 16,679 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,820 KB
testcase_01 AC 0 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 0 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 41 ms
6,816 KB
testcase_07 AC 47 ms
6,816 KB
testcase_08 AC 43 ms
6,820 KB
testcase_09 AC 324 ms
6,816 KB
testcase_10 AC 275 ms
6,816 KB
testcase_11 AC 129 ms
6,820 KB
testcase_12 AC 130 ms
6,816 KB
testcase_13 AC 263 ms
6,820 KB
testcase_14 AC 25 ms
6,816 KB
testcase_15 AC 77 ms
6,820 KB
testcase_16 AC 188 ms
6,816 KB
testcase_17 AC 282 ms
6,820 KB
testcase_18 AC 302 ms
6,816 KB
testcase_19 AC 175 ms
6,820 KB
testcase_20 AC 232 ms
6,820 KB
testcase_21 AC 317 ms
6,820 KB
testcase_22 AC 291 ms
6,816 KB
testcase_23 AC 136 ms
6,816 KB
testcase_24 AC 302 ms
6,816 KB
testcase_25 AC 226 ms
6,816 KB
testcase_26 AC 158 ms
6,816 KB
testcase_27 AC 84 ms
6,820 KB
testcase_28 AC 181 ms
6,816 KB
testcase_29 AC 147 ms
6,820 KB
testcase_30 AC 137 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_macros)]
macro_rules! read {
    ([$t:ty] ; $n:expr) =>
        ((0..$n).map(|_| read!([$t])).collect::<Vec<_>>());
    ($($t:ty),+ ; $n:expr) =>
        ((0..$n).map(|_| read!($($t),+)).collect::<Vec<_>>());
    ([$t:ty]) =>
        (rl().split_whitespace().map(|w| w.parse().unwrap()).collect::<Vec<$t>>());
    ($t:ty) =>
        (rl().parse::<$t>().unwrap());
    ($($t:ty),*) => {{
        let buf = rl();
        let mut w = buf.split_whitespace();
        ($(w.next().unwrap().parse::<$t>().unwrap()),*)
    }};
}

#[allow(dead_code)]
fn rl() -> String {
    let mut buf = String::new();
    std::io::stdin().read_line(&mut buf).unwrap();
    buf.trim_end().to_owned()
}

fn main() {
    let mut n = read!(usize);

    let mut v = vec![];
    for i in 2..=n {
        let mut cnt = 0;
        while n % i == 0 {
            n /= i;
            cnt += 1;
        }
        if cnt != 0 {
            v.push(cnt);
        }
    }

    if v.iter().fold(0, |a, b| a ^ b) == 0 {
        println!("Bob");
    } else {
        println!("Alice");
    }
}
0