結果

問題 No.1716 Bonus Nim
ユーザー akakimidoriakakimidori
提出日時 2021-10-22 21:51:30
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,575 bytes
コンパイル時間 14,118 ms
コンパイル使用メモリ 389,428 KB
実行使用メモリ 7,832 KB
最終ジャッジ日時 2024-09-23 05:16:48
合計ジャッジ時間 14,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 25 ms
7,324 KB
testcase_05 AC 25 ms
7,832 KB
testcase_06 AC 25 ms
7,504 KB
testcase_07 AC 26 ms
7,828 KB
testcase_08 AC 25 ms
7,516 KB
testcase_09 AC 24 ms
7,424 KB
testcase_10 AC 25 ms
7,576 KB
testcase_11 AC 25 ms
7,296 KB
testcase_12 AC 24 ms
7,452 KB
testcase_13 AC 25 ms
7,552 KB
testcase_14 AC 24 ms
7,168 KB
testcase_15 AC 21 ms
6,948 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 1 ms
6,944 KB
testcase_21 WA -
testcase_22 AC 25 ms
7,576 KB
testcase_23 AC 24 ms
7,424 KB
testcase_24 AC 25 ms
7,484 KB
testcase_25 AC 25 ms
7,448 KB
testcase_26 AC 25 ms
7,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin scannner ----------
#[allow(dead_code)]
mod scanner {
    use std::str::FromStr;
    pub struct Scanner<'a> {
        it: std::str::SplitWhitespace<'a>,
    }
    impl<'a> Scanner<'a> {
        pub fn new(s: &'a String) -> Scanner<'a> {
            Scanner {
                it: s.split_whitespace(),
            }
        }
        pub fn next<T: FromStr>(&mut self) -> T {
            self.it.next().unwrap().parse::<T>().ok().unwrap()
        }
        pub fn next_bytes(&mut self) -> Vec<u8> {
            self.it.next().unwrap().bytes().collect()
        }
        pub fn next_chars(&mut self) -> Vec<char> {
            self.it.next().unwrap().chars().collect()
        }
        pub fn next_vec<T: FromStr>(&mut self, len: usize) -> Vec<T> {
            (0..len).map(|_| self.next()).collect()
        }
    }
}
// ---------- end scannner ----------

use std::io::Write;

fn main() {
    use std::io::Read;
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut sc = scanner::Scanner::new(&s);
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    run(&mut sc, &mut out);
}

fn run<W: Write>(sc: &mut scanner::Scanner, out: &mut std::io::BufWriter<W>) {
    let t: u32 = sc.next();
    for _ in 0..t {
        let n: usize = sc.next();
        let a = sc.next_vec::<u32>(n);
        let ans = if n % 2 == 1 || a.iter().fold(0, |s, a| s ^ (*a - 1)) != 0 {
            "Alice"
        } else {
            "Bob"
        };
        writeln!(out, "{}", ans).ok();
    }
}
0