結果

問題 No.1072 A Nice XOR Pair
ユーザー ats5515ats5515
提出日時 2020-06-05 23:07:19
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 169,796 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-12-17 17:40:48
合計ジャッジ時間 3,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int MOD = 1000000007;

signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, X;
	cin >> N >> X;
	vector<int> A(N);
	map<int, int> mp;
	for (int i = 0; i < N; i++) {
		cin >> A[i];
		mp[A[i]]++;
	}
	int res = 0;
	for (int i = 0; i < N; i++) {
		res += mp[A[i] ^ X];
	}
	if (X == 0) res -= N;
	res /= 2;
	cout << res << endl;
}
0