結果

問題 No.1072 A Nice XOR Pair
ユーザー dangodango
提出日時 2023-07-06 21:47:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 89,060 KB
最終ジャッジ日時 2024-07-20 17:05:16
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,272 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 70 ms
68,608 KB
testcase_07 AC 191 ms
87,104 KB
testcase_08 AC 157 ms
85,816 KB
testcase_09 AC 146 ms
85,488 KB
testcase_10 AC 172 ms
86,840 KB
testcase_11 AC 207 ms
89,060 KB
testcase_12 AC 200 ms
88,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a = []
for _ in range(n):
  a.append(int(input()))
a = sorted(a)
b = sorted([i ^ x for i in a])
i = j = c = 0
while i < n and j < n:
    if a[i] < b[j]:
        i += 1
    elif a[i] > b[j]:
        j += 1
    else:
        i0 = i
        while i < n and a[i] == a[i0]:
            i += 1
        j0 = j
        while j < n and b[j] == b[j0]:
            j += 1
        c += (i - i0) * (j - j0 - (x == 0))
print(c // 2)
0