結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | _lambda00 |
提出日時 | 2020-06-05 22:45:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,573 bytes |
コンパイル時間 | 1,366 ms |
コンパイル使用メモリ | 124,048 KB |
実行使用メモリ | 25,472 KB |
最終ジャッジ日時 | 2024-05-09 22:24:48 |
合計ジャッジ時間 | 3,786 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 2 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 393 ms
17,280 KB |
testcase_08 | AC | 85 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 258 ms
12,544 KB |
testcase_12 | AC | 431 ms
25,472 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <string> #include <algorithm> #include <cmath> #include <map> #include <unordered_map> #include <queue> #include <bitset> #include <limits> using ld = long double; using ll = long long int; using ul = unsigned long long int; namespace lamlib { /* constant */ constexpr double epsilon = std::numeric_limits<double>::epsilon(); /* math */ template<class T> inline T abs(const T &a){ return (a>0) ? a : -a; } ul inline digit(const ul &num){ return static_cast<ul>(std::log10(num+epsilon))+1; } /* algorithm */ ul gcd(const ul &a,const ul &b) { return (!b) ? a : gcd(b,a%b); } // NOTE: a > b std::vector<bool> eratosthenes(const ul &n) { std::vector<bool> prime_candidate(n,true); prime_candidate[0] = prime_candidate[1] = false; const ul max_n = static_cast<ul>(std::sqrt(n)); for(ul i = 2;i < max_n;++i) { if(!prime_candidate[i]) continue; for(ul j = 2;i*j < n;++j) prime_candidate[i*j] = false; } return prime_candidate; } /* string */ inline ul same_char_count(const std::string s,const char &ch){ return std::count(std::cbegin(s),std::cend(s),ch); } } // std::cout << std::fixed << std::setprecision(15) << std::endl; int main(int argc,char *argv[]) { ll n,x; std::cin >> n >> x; std::vector<ll> a(n,0); std::map<ll,ll> b; for(ll i = 0;i < n;++i) { ll tmp; std::cin >> tmp; ++b[tmp]; a[i] = tmp; } ll ans = 0; for(ll i = 0;i < n;++i) { const ll tmp = (a[i]^x); if(a[i] != tmp) ans += b[tmp]; } std::cout << ans/2 << std::endl; return 0; }