結果

問題 No.1072 A Nice XOR Pair
ユーザー yuruhiyayuruhiya
提出日時 2020-06-05 22:05:55
言語 Crystal
(1.11.2)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 11,690 ms
コンパイル使用メモリ 295,960 KB
実行使用メモリ 15,852 KB
最終ジャッジ日時 2024-06-30 20:14:27
合計ジャッジ時間 12,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 48 ms
15,760 KB
testcase_08 AC 25 ms
6,940 KB
testcase_09 AC 24 ms
6,940 KB
testcase_10 AC 27 ms
6,940 KB
testcase_11 AC 37 ms
8,960 KB
testcase_12 AC 47 ms
15,852 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 { |i| cnt[i] += 1 }

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