結果

問題 No.1072 A Nice XOR Pair
ユーザー mikianaaamikianaaa
提出日時 2020-08-31 10:01:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 175,672 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-04-27 14:15:16
合計ジャッジ時間 3,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 196 ms
17,280 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 48 ms
6,940 KB
testcase_11 AC 189 ms
12,416 KB
testcase_12 AC 306 ms
25,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()
#define ll long long
#define ld long double
#define INF 1000000000000000000
typedef pair<ll, ll> pll;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    ll N, X;
    cin >> N >> X;
    vector<ll> A(N);
    rep(i, N) { cin >> A[i]; }

    map<ll, ll> ma;
    ll ans = 0;
    for (int i = N - 1; i > 0; i--) {
        ma[A[i]]++;
        ll tar = A[i - 1] ^ X;
        ans += ma[tar];
    }

    cout << ans << endl;
}
0