結果
問題 | No.1142 XOR と XOR |
ユーザー | Drice |
提出日時 | 2020-07-31 22:18:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,067 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 32,768 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 18:38:39 |
合計ジャッジ時間 | 9,807 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 603 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include<cstdio> const long long mod = 1e9+7; long long countA[2048], countB[2048]; long long map[2048]; int a[200005], b[200005]; void preWork(int seq[],int n,long long count[]){ for(int i = 0; i < 1024; i++) map[i] = count[i] = 0; map[0] = 1; int prefix = 0; for(int i = 1; i <= n; i++){ int u = prefix^seq[i]; prefix = u; for(int j = 0; j < 1024; j++){ count[j] += map[u^j]; if(count[j]>=mod) count[j] -= mod; } map[u]++; } } int main(){ int n,m,k; scanf("%d%d%d",&n,&m,&k); for(int i = 1; i <= n; i++) scanf("%d",&a[i]); preWork(a,n,countA); //for(int i = 0; i < 1024; i++) if(countA[i]!=0) printf("countA[%d] = %lld\n",i,countA[i]); for(int i = 1; i <= m; i++) scanf("%d",&b[i]); preWork(b,m,countB); //for(int i = 0; i < 1024; i++) if(countB[i]!=0) printf("countB[%d] = %lld\n",i,countB[i]); long long ans = 0; for(int i = 0; i < 1024; i++){ ans += countA[i]*countB[k^i]; if(ans>=mod) ans -= mod; } printf("%lld\n",ans); return 0; }