結果

問題 No.1072 A Nice XOR Pair
ユーザー FromBooskaFromBooska
提出日時 2023-10-18 12:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 111,956 KB
最終ジャッジ日時 2024-09-18 09:03:29
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,376 KB
testcase_01 AC 42 ms
54,452 KB
testcase_02 AC 42 ms
54,068 KB
testcase_03 AC 42 ms
55,388 KB
testcase_04 AC 42 ms
54,084 KB
testcase_05 AC 42 ms
54,680 KB
testcase_06 AC 68 ms
70,576 KB
testcase_07 AC 240 ms
111,956 KB
testcase_08 AC 163 ms
82,116 KB
testcase_09 AC 161 ms
82,120 KB
testcase_10 AC 169 ms
81,864 KB
testcase_11 AC 211 ms
94,396 KB
testcase_12 AC 224 ms
109,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Ai^Aj=Xということは、Ai=Aj^X
# Counter
# X==0 and or Ai==0のときは別対応必要ないみたい
# ダブルカウント避ける

N, X = map(int, input().split())
A = []
for i in range(N):
    A.append(int(input()))
from collections import Counter
counted = Counter(A)

ans = 0
for i in range(N):
    counted[A[i]] -= 1
    xa = X^A[i]
    calc = counted[xa]
    ans += calc
print(ans)
0