結果

問題 No.1072 A Nice XOR Pair
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-27 23:52:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 109,480 KB
最終ジャッジ日時 2024-11-06 16:56:30
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,912 KB
testcase_01 AC 42 ms
53,696 KB
testcase_02 AC 43 ms
54,148 KB
testcase_03 AC 42 ms
55,084 KB
testcase_04 AC 42 ms
53,840 KB
testcase_05 AC 42 ms
54,480 KB
testcase_06 AC 69 ms
71,104 KB
testcase_07 AC 200 ms
109,480 KB
testcase_08 AC 150 ms
78,060 KB
testcase_09 AC 148 ms
77,976 KB
testcase_10 AC 154 ms
77,908 KB
testcase_11 AC 180 ms
87,944 KB
testcase_12 AC 193 ms
105,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n,x = map(int,input().split())
A = [int(input()) for i in range(n)]
C = Counter(A)
ans = 0

for a in A:
    x2 = a^x

    if x2 in C:
        if x2 == a:
            ans += C[a]-1
        else:
            ans += C[x2]
print(ans//2)
0