結果

問題 No.1072 A Nice XOR Pair
ユーザー roarisroaris
提出日時 2020-06-05 21:45:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 108,920 KB
最終ジャッジ日時 2024-12-17 14:04:29
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,880 KB
testcase_01 AC 45 ms
55,392 KB
testcase_02 AC 45 ms
54,736 KB
testcase_03 AC 42 ms
54,208 KB
testcase_04 AC 42 ms
55,128 KB
testcase_05 AC 43 ms
53,944 KB
testcase_06 AC 53 ms
63,660 KB
testcase_07 AC 173 ms
108,920 KB
testcase_08 AC 106 ms
77,812 KB
testcase_09 AC 105 ms
77,580 KB
testcase_10 AC 110 ms
77,948 KB
testcase_11 AC 134 ms
90,696 KB
testcase_12 AC 146 ms
106,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, X = map(int, input().split())
A = [int(input()) for _ in range(N)]
cnt = Counter(A)
ans = 0

for i in range(N):
    pair = A[i]^X
    ans += cnt[pair]
    
    if A[i]==pair:
        ans -= 1

print(ans//2)
0