結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | kappybar |
提出日時 | 2020-06-05 22:01:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 1,882 ms |
コンパイル使用メモリ | 172,272 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 21:10:29 |
合計ジャッジ時間 | 2,965 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 120 ms
5,376 KB |
testcase_08 | AC | 94 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 87 ms
5,376 KB |
testcase_12 | AC | 102 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; int n; int x; vector<int> a(n); int main(){ cin >> n >> x; a.resize(n); rep(i,n) cin >> a[i]; sort(a.begin(),a.end()); ll ans = 0; rep(i,n){ int now = a[i] ^ x; int target = upper_bound(a.begin(),a.end(),now) - lower_bound(a.begin(),a.end(),now); ans += (ll)target; } cout << ans / 2 << endl; return 0; }