結果

問題 No.1072 A Nice XOR Pair
ユーザー umezoumezo
提出日時 2020-06-05 22:51:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 238,564 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-05-09 22:33:47
合計ジャッジ時間 4,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 242 ms
16,000 KB
testcase_08 AC 73 ms
5,376 KB
testcase_09 AC 70 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 151 ms
11,008 KB
testcase_12 AC 254 ms
24,192 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(){
  ll n,x;
  cin>>n>>x;
  
  ll a;
  map<ll,ll> m;
  rep(i,n){
    cin>>a;
    m[a]++;
  }
  
  if(x==0){
    ll sum=0;
    for(auto y:m){
      sum+=y.second*(y.second-1)/2;
    }
    cout<<sum<<endl;
  }
  else{
    ll sum=0;
    for(auto y:m){
      sum+=y.second*m[y.first^x];
      m[y.first^x]=0;
    }
    cout<<sum<<endl;
  }
  
  return 0;
}
0