結果
| 問題 |
No.1072 A Nice XOR Pair
|
| コンテスト | |
| ユーザー |
Strorkis
|
| 提出日時 | 2020-06-05 22:26:56 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 2,000 ms |
| コード長 | 755 bytes |
| コンパイル時間 | 13,080 ms |
| コンパイル使用メモリ | 396,376 KB |
| 実行使用メモリ | 14,996 KB |
| 最終ジャッジ日時 | 2024-12-17 16:10:13 |
| 合計ジャッジ時間 | 14,291 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
use std::collections::HashMap;
fn main() {
let (n, x): (usize, u32) = {
let mut buf = String::new();
std::io::stdin().read_line(&mut buf).unwrap();
let mut iter = buf.split_whitespace();
(
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
)
};
let mut map: HashMap<u32, u64> = HashMap::new();
let mut ans: u64 = 0;
for _ in 0..n {
let a : u32 = {
let mut buf = String::new();
std::io::stdin().read_line(&mut buf).unwrap();
buf.trim_end().parse().unwrap()
};
ans += *map.entry(a ^ x).or_insert(0);
*map.entry(a).or_insert(0) += 1;
}
println!("{}", ans);
}
Strorkis