結果

問題 No.1210 XOR Grid
ユーザー 沙耶花沙耶花
提出日時 2020-08-30 14:21:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 203,512 KB
実行使用メモリ 9,696 KB
最終ジャッジ日時 2024-11-15 07:35:53
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 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 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 56 ms
6,816 KB
testcase_26 AC 54 ms
6,820 KB
testcase_27 AC 56 ms
6,820 KB
testcase_28 AC 56 ms
6,820 KB
testcase_29 AC 54 ms
6,816 KB
testcase_30 AC 44 ms
6,816 KB
testcase_31 AC 54 ms
6,820 KB
testcase_32 AC 55 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 34 ms
6,820 KB
testcase_37 AC 33 ms
6,816 KB
testcase_38 AC 35 ms
6,820 KB
testcase_39 AC 27 ms
6,816 KB
testcase_40 AC 148 ms
9,600 KB
testcase_41 AC 164 ms
9,600 KB
testcase_42 AC 204 ms
9,600 KB
testcase_43 AC 173 ms
9,604 KB
testcase_44 AC 208 ms
9,600 KB
testcase_45 AC 204 ms
9,600 KB
testcase_46 AC 201 ms
9,472 KB
testcase_47 AC 42 ms
9,600 KB
testcase_48 AC 42 ms
9,600 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 91 ms
9,696 KB
testcase_51 AC 201 ms
9,600 KB
testcase_52 AC 92 ms
8,960 KB
testcase_53 AC 199 ms
9,600 KB
testcase_54 AC 41 ms
9,600 KB
testcase_55 AC 180 ms
9,600 KB
testcase_56 AC 55 ms
6,816 KB
testcase_57 AC 62 ms
8,320 KB
testcase_58 AC 2 ms
6,820 KB
testcase_59 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 2000000000000000000
int N,M;
long long X;
int beki(long long a,long long b,int M = modulo){
	int x = 1;
	while(b!=0){
		if(b&1){
			x=((long long)x*a)%M;
		}
		a=((long long)a*a)%M;
		b>>=1;
	}
	return x;
}
int main(){
	
	cin>>N>>M;
	cin>>X;
	
	vector<long long> A(N),B(M);
	
	for(int i=0;i<N;i++)scanf("%lld",&A[i]);
	for(int i=0;i<M;i++)scanf("%lld",&B[i]);
	
	long long ans = 1LL;
	long long K = ((long long)N-1)*((long long)M-1);

	for(int i=0;i<X;i++){
		vector<long long> a(N),b(M);
		int sum = 0;
		for(int j=0;j<N;j++){
			a[j] = (A[j]>>i)&1;
			sum += a[j];
		}
		for(int j=0;j<M;j++){
			b[j] = (B[j]>>i)&1;
			sum += b[j];
		}
		
		if(sum%2==1)ans = 0LL;
		else{
			ans = mod(ans * beki(2,K));
		}
		
	}
	
	cout<<ans<<endl;
	
	return 0;
}
0