結果

問題 No.1072 A Nice XOR Pair
ユーザー Masaki KitaguchiMasaki Kitaguchi
提出日時 2022-01-23 12:39:14
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 13,559 ms
コンパイル使用メモリ 394,444 KB
実行使用メモリ 11,948 KB
最終ジャッジ日時 2024-05-07 00:10:02
合計ジャッジ時間 14,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 41 ms
11,948 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 30 ms
8,024 KB
testcase_12 AC 35 ms
11,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[macro_export]
macro_rules! setup {
    { mut $input:ident: SplitWhitespace $(,)? } => {
        use std::io::Read;
        let mut buf = String::new();
        std::io::stdin().read_to_string(&mut buf).ok();
        let mut $input = buf.split_whitespace();
    };
}

#[macro_export]
macro_rules! parse_next {
    ($str_iter:expr) => {
        $str_iter.next().unwrap().parse().ok().unwrap()
    };
}

fn main() {
    setup! { mut input: SplitWhitespace };

    let n: usize = parse_next!(input);
    let x: usize = parse_next!(input);
    let a: Vec<usize> = (0..n).map(|_| parse_next!(input)).collect();

    let mut c = std::collections::HashMap::new();
    for i in 0..n {
        let key = x ^ a[i];
        if let Some(value) = c.get_mut(&key) {
            *value += 1;
        } else {
            c.insert(key, 1);
        }
    }

    let ans = (|| {
        let mut count = 0;
        for i in 0..n {
            if let Some(value) = c.get(&a[i]) {
                count += *value;
            }
        }
        // if x == 0 {
        //     count -= n;
        // }
        count / 2
    })();

    println!("{}", ans);
}
0