結果

問題 No.1072 A Nice XOR Pair
ユーザー umezoumezo
提出日時 2020-06-05 22:42:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 3,088 ms
コンパイル使用メモリ 238,664 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-05-09 22:21:55
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 325 ms
12,672 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 198 ms
9,216 KB
testcase_12 AC 342 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

#include <bits/stdc++.h>
using namespace std;

int main(){
  int n,x;
  cin>>n>>x;
  
  int a;
  map<int,int> m;
  rep(i,n){
    cin>>a;
    m[a]++;
  }
  
  int sum=0;
  for(auto y:m){
    sum+=y.second*m[y.first^x];
    m[y.first^x]=0;
  }
  
  cout<<sum<<endl;
  
  return 0;
}
0