結果
問題 | No.1142 XOR と XOR |
ユーザー | ianCK |
提出日時 | 2020-08-12 05:54:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 1,068 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 24,960 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 03:48:39 |
合計ジャッジ時間 | 2,275 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 46 ms
5,248 KB |
testcase_04 | AC | 35 ms
5,248 KB |
testcase_05 | AC | 29 ms
5,248 KB |
testcase_06 | AC | 36 ms
5,248 KB |
testcase_07 | AC | 39 ms
5,248 KB |
testcase_08 | AC | 43 ms
5,248 KB |
testcase_09 | AC | 44 ms
5,248 KB |
testcase_10 | AC | 44 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 24 ms
5,248 KB |
testcase_15 | AC | 24 ms
5,248 KB |
testcase_16 | AC | 5 ms
5,248 KB |
testcase_17 | AC | 30 ms
5,248 KB |
testcase_18 | AC | 9 ms
5,248 KB |
testcase_19 | AC | 36 ms
5,248 KB |
testcase_20 | AC | 24 ms
5,248 KB |
testcase_21 | AC | 16 ms
5,248 KB |
testcase_22 | AC | 10 ms
5,248 KB |
testcase_23 | AC | 34 ms
5,248 KB |
testcase_24 | AC | 38 ms
5,248 KB |
testcase_25 | AC | 23 ms
5,248 KB |
testcase_26 | AC | 36 ms
5,248 KB |
testcase_27 | AC | 29 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d%d", &n, &m, &k); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:13:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | for (int i = 1; i <= n; i++) scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:14:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | for (int i = 1; i <= m; i++) scanf("%d", &b[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h> typedef long long int ll; constexpr int kN = int(2E5 + 10), kMod = int(1E9 + 7), kC = 1 << 10; int a[kN], b[kN]; ll ca[kN], cb[kN], sa[kN], sb[kN]; int main() { int n, m, k; ll ans = 0; scanf("%d%d%d", &n, &m, &k); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); for (int i = 1; i <= m; i++) scanf("%d", &b[i]); for (int i = 1; i <= n; i++) a[i] ^= a[i - 1]; for (int i = 1; i <= m; i++) b[i] ^= b[i - 1]; ca[0] = cb[0] = 1; for (int i = 1; i <= n; i++) ca[a[i]]++; for (int i = 1; i <= m; i++) cb[b[i]]++; for (int i = 0; i < kC; i++) for (int j = i + 1; j < kC; j++) sa[i ^ j] += ca[i] * ca[j] % kMod; for (int i = 0; i < kC; i++) for (int j = i + 1; j < kC; j++) sb[i ^ j] += cb[i] * cb[j] % kMod; for (int i = 0; i < kC; i++) sa[0] += (ca[i] * (ca[i] - 1) / 2) % kMod; for (int i = 0; i < kC; i++) sb[0] += (cb[i] * (cb[i] - 1) / 2) % kMod; for (int i = 0; i < kC; i++) sa[i] %= kMod; for (int i = 0; i < kC; i++) sb[i] %= kMod; for (int i = 0; i < kC; i++) ans += sa[i] * sb[i ^ k] % kMod; printf("%lld\n", ans % kMod); }