結果

問題 No.1072 A Nice XOR Pair
ユーザー ats5515ats5515
提出日時 2020-06-05 23:07:19
言語 C++11
(gcc 11.4.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 271 ms
17,152 KB
testcase_08 AC 28 ms
6,820 KB
testcase_09 AC 26 ms
6,820 KB
testcase_10 AC 51 ms
6,816 KB
testcase_11 AC 171 ms
12,288 KB
testcase_12 AC 282 ms
25,344 KB
権限があれば一括ダウンロードができます

ソースコード

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