結果

問題 No.1072 A Nice XOR Pair
ユーザー RustyRusty
提出日時 2023-01-17 15:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 117,276 KB
最終ジャッジ日時 2025-01-02 15:33:46
合計ジャッジ時間 3,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,420 KB
testcase_01 AC 37 ms
54,876 KB
testcase_02 AC 38 ms
55,124 KB
testcase_03 AC 38 ms
53,944 KB
testcase_04 AC 37 ms
53,720 KB
testcase_05 AC 41 ms
53,736 KB
testcase_06 AC 65 ms
71,844 KB
testcase_07 AC 224 ms
103,400 KB
testcase_08 AC 164 ms
83,068 KB
testcase_09 AC 153 ms
83,248 KB
testcase_10 AC 158 ms
82,568 KB
testcase_11 AC 228 ms
98,592 KB
testcase_12 AC 240 ms
117,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
d = defaultdict(int)
n,x = map(int,input().split())
L = []
for i in range(n):
    a = int(input())
    L.append(a)
    d[a] += 1

ans = 0
for i in range(n):
    ax = L[i]
    if d[ax^x] > 0 and ax^x != ax:
        ans += d[ax^x]
    elif d[ax^x] > 1 and ax^x == ax:
        ans += d[ax^x]-1
print(ans//2)
0