結果

問題 No.1072 A Nice XOR Pair
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-05 21:32:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 57,044 KB
最終ジャッジ日時 2024-05-09 20:10:37
合計ジャッジ時間 2,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 175 ms
26,496 KB
testcase_10 AC 178 ms
26,368 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, X = map(int, input().split())
A = [int(input()) for _ in range(N)]
B = [a ^ X for a in A]

C1 = Counter(A)
C2 = Counter(B)
if X == 0:
    ans = sum(v*(v-1)//2 for v in C1.values())
else:
    ans = 0
    for k1, v1 in C1.items():
        k2 = k1 ^ X
        v2 = C2[k2]
        ans += v1 * v2
    ans //= 2

print(ans)
0