結果

問題 No.1072 A Nice XOR Pair
ユーザー RustyRusty
提出日時 2023-01-17 15:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 119,400 KB
最終ジャッジ日時 2024-06-10 19:25:09
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,084 KB
testcase_01 AC 37 ms
53,600 KB
testcase_02 AC 36 ms
54,784 KB
testcase_03 AC 36 ms
55,020 KB
testcase_04 AC 39 ms
54,924 KB
testcase_05 AC 38 ms
54,660 KB
testcase_06 AC 61 ms
71,032 KB
testcase_07 AC 206 ms
101,452 KB
testcase_08 AC 142 ms
82,624 KB
testcase_09 AC 141 ms
83,348 KB
testcase_10 AC 143 ms
82,692 KB
testcase_11 AC 201 ms
96,908 KB
testcase_12 AC 229 ms
119,400 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