結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | mikianaaa |
提出日時 | 2020-08-31 09:59:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 1,834 ms |
コンパイル使用メモリ | 171,896 KB |
実行使用メモリ | 20,224 KB |
最終ジャッジ日時 | 2024-11-15 16:44:11 |
合計ジャッジ時間 | 10,768 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
11,776 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 136 ms
14,080 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 1,612 ms
14,208 KB |
testcase_11 | AC | 144 ms
14,208 KB |
testcase_12 | AC | 160 ms
20,224 KB |
ソースコード
#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]; } multiset<ll> mul; ll ans = 0; for (int i = N - 1; i > 0; i--) { mul.insert(A[i]); ll tar = A[i - 1] ^ X; ans += mul.count(tar); } cout << ans << endl; }