結果

問題 No.1072 A Nice XOR Pair
ユーザー chocono2230chocono2230
提出日時 2020-06-05 21:35:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 813 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 177,784 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-05-09 20:16:49
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 267 ms
22,400 KB
testcase_08 AC 72 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 169 ms
11,520 KB
testcase_12 AC 245 ms
20,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  int n, x;
  cin >> n >> x;
  map<int, int> mp;
  map<int, bool> fl;
  rep(i, n){
    int in;
    cin >> in;
    mp[in]++;
    fl[in] = false;
  }
  ll ans = 0;
  for(auto p : mp){
    if(fl[p.first] == true) continue;
    int nx = p.first ^ x;
    if(mp.count(nx) == 1){
      ans += (ll)p.second * (ll)mp[nx];
      fl[nx] = true;
    }
  }
  cout << ans << endl;
  return 0;
}
0