結果

問題 No.1072 A Nice XOR Pair
ユーザー yuruhiyayuruhiya
提出日時 2020-06-05 21:55:21
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 11,741 ms
コンパイル使用メモリ 295,508 KB
実行使用メモリ 15,764 KB
最終ジャッジ日時 2024-06-30 20:14:41
合計ジャッジ時間 12,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 49 ms
15,748 KB
testcase_08 AC 26 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 37 ms
9,536 KB
testcase_12 AC 47 ms
15,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = read_line.split.map &.to_i
a = n.times.map { read_line.to_i }
cnt = Hash(Int32, Int64).new(0)
a.each do |i|
  cnt[i] += 1
end

ans = 0_i64
cnt.each do |val, c|
	val2 = val ^ x
  if val != val2
    ans += c * cnt.fetch(val2, 0)
  else
    ans += c * (c - 1) // 2
  end
end
puts ans // 2
0