結果

問題 No.1072 A Nice XOR Pair
ユーザー FromBooskaFromBooska
提出日時 2023-10-18 12:38:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 111,868 KB
最終ジャッジ日時 2024-09-18 08:58:04
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,812 KB
testcase_01 AC 36 ms
53,932 KB
testcase_02 AC 36 ms
53,440 KB
testcase_03 AC 35 ms
53,560 KB
testcase_04 WA -
testcase_05 AC 36 ms
54,660 KB
testcase_06 AC 68 ms
69,492 KB
testcase_07 AC 183 ms
111,868 KB
testcase_08 AC 148 ms
81,476 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 174 ms
94,392 KB
testcase_12 AC 185 ms
109,492 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):
    xa = X^A[i]
    calc = counted[xa]
    ans += calc
ans //= 2 #双方から数えているのでダブルカウントしている
print(ans)
0