結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー gemmarogemmaro
提出日時 2020-11-04 09:49:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 789 bytes
コンパイル時間 20,537 ms
コンパイル使用メモリ 400,960 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 09:50:19
合計ジャッジ時間 19,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 215 ms
5,376 KB
testcase_08 AC 154 ms
5,376 KB
testcase_09 AC 105 ms
5,376 KB
testcase_10 AC 126 ms
5,376 KB
testcase_11 AC 167 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 94 ms
5,376 KB
testcase_15 AC 173 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 39 ms
5,376 KB
testcase_18 AC 184 ms
5,376 KB
testcase_19 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{convert::TryInto, io::stdin, ops::BitXor};

fn main() {
    let _n = {
        let mut buf = String::new();
        stdin().read_line(&mut buf).unwrap();
    };

    let a_arry = {
        let mut buf = String::new();
        stdin().read_line(&mut buf).unwrap();

        buf.split_whitespace()
            .map(|s| s.parse::<u16>().unwrap())
            .collect()
    };

    println!("{}", solve(a_arry));
}

fn solve(a_arry: Vec<u16>) -> u16 {
    let mut x_arry = [false; 2 << 14];
    x_arry[0] = true;

    for a in a_arry.iter() {
        for (i, _) in x_arry.clone().iter().enumerate().filter(|(_, &b)| b) {
            let i = (i as u16).bitxor(a);
            x_arry[i as usize] = true;
        }
    }

    x_arry.iter().filter(|&&x| x).count().try_into().unwrap()
}
0