結果

問題 No.1072 A Nice XOR Pair
ユーザー umezoumezo
提出日時 2020-06-05 22:44:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 237,544 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-05-09 22:23:56
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 233 ms
15,872 KB
testcase_08 AC 70 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 136 ms
11,008 KB
testcase_12 AC 247 ms
24,064 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]++;
  }
  
  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