結果

問題 No.1072 A Nice XOR Pair
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-14 17:14:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 1,297 ms
コンパイル使用メモリ 133,176 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-16 11:28:55
合計ジャッジ時間 3,193 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 144 ms
12,800 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 25 ms
5,376 KB
testcase_10 AC 55 ms
5,376 KB
testcase_11 AC 106 ms
7,424 KB
testcase_12 AC 147 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
using namespace std;
int N,X;
void solve()
{
	cin >> N >> X;
	long long ans = 0;
	map<int,int> mp;
	for(int i = 0;i < N;i++)
	{
		int a;
		cin >> a;
		int b = a^X;
		if(mp.count(b)) ans += mp[b];
		mp[a]++;
	}

	cout << ans << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	//cin >> tt;
	while(tt--) solve();
}
0