結果

問題 No.1072 A Nice XOR Pair
ユーザー kbys
提出日時 2020-06-22 21:42:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,020 KB
最終ジャッジ日時 2024-07-03 18:53:56
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [0]*N
for i in range(N):
    A[i] = int(input())
    
cnt = {}

ans = 0
for a in A:
    if a^X in cnt:
        ans += cnt[a^X]
    if a not in cnt:
        cnt[a] = 1
    else:
        cnt[a] += 1
        
print(ans)
0