結果

問題 No.1072 A Nice XOR Pair
ユーザー convexineq
提出日時 2020-06-05 21:26:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,608 KB
最終ジャッジ日時 2024-12-17 13:19:34
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

#n,k,x,y *a = map(int,read().split())
n,x,*a = map(int,read().split())

d = {}
for i in a:
    if i in d: d[i] += 1
    else: d[i] = 1

ans = 0
for i in a:
    if x^i in d: ans += d[i]

if x==0:
    ans -= n

print(ans//2)
0