結果

問題 No.1072 A Nice XOR Pair
ユーザー timitimi
提出日時 2020-10-08 09:02:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,544 KB
最終ジャッジ日時 2024-07-20 05:45:24
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 662 ms
31,544 KB
testcase_08 AC 508 ms
10,624 KB
testcase_09 AC 510 ms
10,624 KB
testcase_10 AC 513 ms
10,624 KB
testcase_11 AC 589 ms
15,960 KB
testcase_12 AC 570 ms
31,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int, input().split())
D={}
for i in range(N):
    d=int(input())
    if d not in D:
        D[d]=1 
    else:
        D[d]+=1 
ans=0
if X!=0:
    for i in D:
        e=X^i 
        if e in D:
            ans+=D[i]*D[e]
    print(ans//2)
else:
    for i in D:
        ans+=D[i]*(D[i]-1)//2
    print(ans)
0