結果
問題 | No.1142 XOR と XOR |
ユーザー | cn_449 |
提出日時 | 2020-07-31 22:41:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,799 bytes |
コンパイル時間 | 1,138 ms |
コンパイル使用メモリ | 134,380 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 19:58:39 |
合計ジャッジ時間 | 7,479 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 301 ms
6,944 KB |
testcase_04 | AC | 235 ms
6,940 KB |
testcase_05 | AC | 197 ms
6,944 KB |
testcase_06 | AC | 241 ms
6,940 KB |
testcase_07 | AC | 307 ms
6,940 KB |
testcase_08 | AC | 305 ms
6,944 KB |
testcase_09 | AC | 300 ms
6,940 KB |
testcase_10 | AC | 305 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 15 ms
6,944 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 151 ms
6,948 KB |
testcase_21 | RE | - |
testcase_22 | AC | 57 ms
6,944 KB |
testcase_23 | RE | - |
testcase_24 | AC | 251 ms
6,940 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #include <random> #include <unordered_map> #include <unordered_set> #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back #define debug(x) cerr << #x << ':' << x << '\n' #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> P; typedef complex<ld> com; constexpr int inf = 1000000010; constexpr ll INF = 1000000000000000010; constexpr ld eps = 1e-12; constexpr ld pi = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } constexpr ll mod = 1000000007; int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int n, m, k; cin >> n >> m >> k; vector<int> a(n), b(n); rep(i, n) cin >> a[i]; rep(i, n) cin >> b[i]; vector<ll> x(1024), y(1024), cntx(1024), cnty(1024); cntx[0] = cnty[0] = 1; int curx = 0, cury = 0; rep(i, n) { curx ^= a[i]; rep(j, 1024) { x[j] += cntx[j ^ curx]; } cntx[curx]++; } rep(i, m) { cury ^= b[i]; rep(j, 1024) { y[j] += cnty[j ^cury]; } cnty[cury]++; } rep(i, 1024) x[i] %= mod, y[i] %= mod; ll ans = 0; rep(i, 1024) ans += x[i] * y[i ^ k] % mod; cout << ans % mod << '\n'; }