結果

問題 No.1072 A Nice XOR Pair
ユーザー convexineq
提出日時 2020-06-05 21:27:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,868 KB
最終ジャッジ日時 2024-12-17 13:22:29
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

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[x^i]

if x==0:
    ans -= n

print(ans//2)
0