結果

問題 No.1142 XOR と XOR
ユーザー leafirbyleafirby
提出日時 2020-08-01 13:49:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 203,384 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-08 03:41:32
合計ジャッジ時間 4,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 106 ms
6,400 KB
testcase_04 AC 71 ms
5,888 KB
testcase_05 AC 59 ms
5,248 KB
testcase_06 AC 73 ms
5,760 KB
testcase_07 AC 66 ms
6,400 KB
testcase_08 AC 90 ms
6,528 KB
testcase_09 AC 91 ms
6,400 KB
testcase_10 AC 90 ms
6,400 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 50 ms
5,248 KB
testcase_15 AC 49 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 51 ms
5,632 KB
testcase_18 AC 15 ms
5,248 KB
testcase_19 AC 73 ms
5,760 KB
testcase_20 AC 49 ms
5,248 KB
testcase_21 AC 32 ms
5,248 KB
testcase_22 AC 19 ms
5,248 KB
testcase_23 AC 69 ms
5,632 KB
testcase_24 AC 78 ms
5,760 KB
testcase_25 AC 47 ms
5,248 KB
testcase_26 AC 75 ms
5,760 KB
testcase_27 AC 61 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define r(i,m,n) for(int i=m;i<n;i++)
#define m 1000000007
#define n 1024
using namespace std;int main(){int N,M,K,s=0;cin>>N>>M>>K;vector<long>P(N+1),Q(M+1),A(n),B(n),C(n),D(n);r(i,1,N+1)cin>>P[i];r(i,1,M+1)cin>>Q[i];r(i,1,N+1)P[i]^=P[i-1];r(i,1,M+1)Q[i]^=Q[i-1];r(i,0,N+1)A[P[i]]++;r(i,0,M+1)B[Q[i]]++;r(i,0,n)r(j,i,n){if(i==j){C[0]=(C[0]+A[i]*(A[i]-1)/2)%m;D[0]=(D[0]+B[i]*(B[i]-1)/2)%m;}else{C[i^j]=(C[i^j]+A[i]*A[j])%m;D[i^j]=(D[i^j]+B[i]*B[j]%m);}}r(i,0,n)s=(s+C[i]*D[K^i])%m;cout<<s<<endl;}
0