結果

問題 No.1072 A Nice XOR Pair
ユーザー 👑 obakyanobakyan
提出日時 2020-06-05 23:39:20
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 14,108 KB
最終ジャッジ日時 2024-05-10 00:09:45
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 83 ms
14,068 KB
testcase_08 AC 71 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 57 ms
6,560 KB
testcase_12 AC 80 ms
14,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local xor = bit.bxor
local n, x = io.read("*n", "*n")
local t = {}
for i = 1, n do
  t[i] = io.read("*n")
end
local tmap = {}
for i = 1, n do
  local v = t[i]
  if not tmap[v] then
    tmap[v] = 1
  else
    tmap[v] = tmap[v] + 1
  end
end
local ret = 0
for i = 1, n do
  local dst = xor(x, t[i])
  if tmap[dst] then
    ret = ret + tmap[dst]
  end
end
print(math.floor(ret / 2))
0