結果

問題 No.1072 A Nice XOR Pair
ユーザー deuteridayodeuteridayo
提出日時 2020-06-23 00:23:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 175,436 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-07-03 19:03:20
合計ジャッジ時間 3,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    long n,x;
    cin >> n >> x;
    long a[n];
    for(int i=0;i<n;i++)cin >> a[i];
    map<long,long>b;
    for(int i=0;i<n;i++){
        b[a[i]^x]++;
    }
    int ans =0;
    for(int i=0;i<n;i++){
        if(x!=0)ans += b[a[i]];
        else ans += max(0L,b[a[i]]-1);
    }
    cout << ans/2 << endl;
}
0