結果

問題 No.1072 A Nice XOR Pair
ユーザー O2MTO2MT
提出日時 2021-02-25 23:47:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 122,392 KB
最終ジャッジ日時 2024-10-01 14:48:26
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,980 KB
testcase_01 AC 38 ms
52,204 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 38 ms
52,228 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,972 KB
testcase_06 AC 65 ms
68,720 KB
testcase_07 AC 190 ms
122,392 KB
testcase_08 AC 145 ms
91,364 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 182 ms
99,984 KB
testcase_12 AC 190 ms
119,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int,input().split())
A = [int(input()) for _ in range(N)]
mapA = {}
B = []
ans = 0
for a in A:
    if a in mapA:
        mapA[a] += 1
    else:
        mapA[a] = 1
    B.append(a^X)
for b in B:
    if b in mapA:
        ans += mapA[b]
print(ans//2)
0