結果

問題 No.1072 A Nice XOR Pair
ユーザー syunsukesyunsuke
提出日時 2020-09-15 22:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 92,124 KB
最終ジャッジ日時 2024-06-22 02:48:21
合計ジャッジ時間 2,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,456 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 37 ms
52,980 KB
testcase_03 AC 36 ms
52,520 KB
testcase_04 AC 36 ms
51,752 KB
testcase_05 AC 35 ms
52,288 KB
testcase_06 AC 59 ms
67,952 KB
testcase_07 AC 200 ms
92,124 KB
testcase_08 AC 134 ms
76,408 KB
testcase_09 AC 136 ms
76,084 KB
testcase_10 AC 140 ms
76,484 KB
testcase_11 AC 202 ms
84,188 KB
testcase_12 AC 204 ms
91,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())

D={}
for i in range(N):
    A=int(input())
    if A not in D:
        D[A]=1
    else:
        D[A]+=1

ans=0
if X==0:
    for k,v in D.items():
        ans+=v*(v-1)
    print(ans//2)


else:
    for k,v in D.items():
        if X^k in D:
            ans+=D[X^k]*v
    print(ans//2)
0