結果

問題 No.1674 Introduction to XOR
ユーザー Masaki KitaguchiMasaki Kitaguchi
提出日時 2022-01-08 23:43:49
言語 Rust
(1.77.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 1,276 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 173,176 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-26 19:32:48
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,948 KB
testcase_05 AC 0 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 0 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 0 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 0 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut buf = String::new();
    let mut input = {
        use std::io::Read;
        std::io::stdin().read_to_string(&mut buf).unwrap();
        buf.split_whitespace()
    };

    let n: usize = input.next().unwrap().parse().unwrap();
    let a: Vec<u64> = (0..n)
        .map(|_| input.next().unwrap().parse().unwrap())
        .collect();

    let a_max = a.iter().fold(0, |acc, &x| acc.max(x));

    let a_2_max_len = format!("{:#b}", a_max).chars().skip(2).count();

    let a_2 = a
        .iter()
        .map(|x| {
            format!("{:#0width$b}", x, width = a_2_max_len + 1 + 2)
                .chars()
                .skip(2)
                .collect::<String>()
        })
        .collect::<Vec<_>>();

    let mut count = vec![0; a_2_max_len + 1];
    for i in 0..n {
        for (j, c) in a_2[i].chars().rev().enumerate() {
            if c == '1' {
                count[j] += 1;
            }
        }
    }

    let mut ans_2 = String::new();
    for j in 0..count.len() {
        if count[j] == 0 {
            ans_2.push('1');
            break;
        } else {
            ans_2.push('0');
        }
    }
    ans_2 = ans_2.chars().rev().collect();

    let ans = u64::from_str_radix(&ans_2, 2).unwrap();

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