結果

問題 No.2 素因数ゲーム
ユーザー ixTL255ixTL255
提出日時 2023-03-05 18:41:19
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 13,427 ms
コンパイル使用メモリ 379,744 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 01:40:26
合計ジャッジ時間 19,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 46 ms
5,376 KB
testcase_07 AC 52 ms
5,376 KB
testcase_08 AC 47 ms
5,376 KB
testcase_09 AC 362 ms
5,376 KB
testcase_10 AC 305 ms
5,376 KB
testcase_11 AC 140 ms
5,376 KB
testcase_12 AC 145 ms
5,376 KB
testcase_13 AC 297 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 84 ms
5,376 KB
testcase_16 AC 216 ms
5,376 KB
testcase_17 AC 312 ms
5,376 KB
testcase_18 AC 335 ms
5,376 KB
testcase_19 AC 192 ms
5,376 KB
testcase_20 AC 255 ms
5,376 KB
testcase_21 AC 346 ms
5,376 KB
testcase_22 AC 322 ms
5,376 KB
testcase_23 AC 152 ms
5,376 KB
testcase_24 AC 336 ms
5,376 KB
testcase_25 AC 250 ms
5,376 KB
testcase_26 AC 176 ms
5,376 KB
testcase_27 AC 94 ms
5,376 KB
testcase_28 AC 203 ms
5,376 KB
testcase_29 AC 163 ms
5,376 KB
testcase_30 AC 152 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unnecessary parentheses around `while` condition
 --> src/main.rs:9:14
  |
9 |         while(n % i == 0) {
  |              ^          ^
  |
  = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
  |
9 -         while(n % i == 0) {
9 +         while n % i == 0 {
  |

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let mut n: usize = n.trim().parse().unwrap();

    let mut ans = 0;
    for i in 2..=n {
        let mut cnt = 0;
        while(n % i == 0) {
            cnt += 1;
            n /= i;
        }
        ans ^= cnt;
    }
    println!("{}",
        if ans == 0 { "Bob" }
        else { "Alice" }
    );
}
0