結果

問題 No.1072 A Nice XOR Pair
ユーザー mmn15277198mmn15277198
提出日時 2021-04-09 06:40:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,560 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 101,168 KB
実行使用メモリ 24,136 KB
最終ジャッジ日時 2023-09-06 15:46:38
合計ジャッジ時間 2,326 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 177 ms
16,036 KB
testcase_08 AC 28 ms
4,376 KB
testcase_09 AC 27 ms
4,376 KB
testcase_10 AC 39 ms
4,376 KB
testcase_11 AC 115 ms
11,000 KB
testcase_12 AC 238 ms
24,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <map>
#include <iomanip>
#include <stdio.h>
#include <math.h>
#include <queue>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

#define rep(i,n) for(int i = 0; i < (n); i++)
#define pb push_back 
#define eb emplace_back 
#define fi first
#define se second
#define all(x) x.begin() , x.end()
#define vi vector<int>
#define vll vector<ll>
#define vb vector<bool>

const static int INF = 1001001001;
const static ll LINF = 1001001001001001001LL;
const static ld PI = 3.1415926535897932384626L;
const static int MOD = int(1e9) + int(7);
//const static ll MOD = ll(1e9) + ll(7);
//const static int MOD = 998244353;
//const static int MOD = 998244353;
const static int MX = 202020;

ll gcd (ll a , ll b) { if (a < b) swap(a , b); if (a % b == 0) return b; else return gcd (b , a % b); }
ll lcm (ll a , ll b) { return (a / gcd (a , b) * b); }
int keta (ll x) { int ret = 0; while(x) { ret++; x /= 10; } return ret; }
inline int in () { int x; scanf("%d" , &x); return x; }
inline ll lin () { ll x; scanf("%lld" , &x); return x; }

/*
//memo
v.erase(unique(all(v)), v.end());
*/

int main () {
    int n = in();
    ll x = lin();
    map<ll,ll> mp;
    rep(i,n) {
        ll a = lin();
        mp[a]++;
    }
    ll ans = 0;
    for(auto i : mp) {
        ll A = mp[i.fi];
        ll B = mp[i.fi ^ x];
        if (x == 0) ans += A * (A - 1);
        else ans += A * B;
    }
    cout << ans/2 << endl;
    return 0;
}







0