結果

問題 No.1870 Xor Matrix
ユーザー publflpublfl
提出日時 2022-03-11 21:37:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 33,536 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 01:45:23
合計ジャッジ時間 1,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 23 ms
5,376 KB
testcase_04 AC 31 ms
5,376 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 21 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 29 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 28 ms
5,376 KB
testcase_12 AC 26 ms
5,376 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 19 ms
5,376 KB
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#define MOD 998244353

long long int power(long long int a, long long int b)
{
	long long int ans = 1;
	long long int k = a;
	while(b)
	{
		if(b%2==1) ans*=k, ans%=MOD;
		b/=2;
		k*=k, k%=MOD;
	}
	return ans;
}

int x[200010],y[200010];
int main()
{
	int a,b;
	scanf("%d%d",&a,&b);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	for(int j=1;j<=b;j++) scanf("%d",&y[j]);
	
	long long int ans = 1;
	for(int k=19;k>=0;k--)
	{
		int s1 = 0, s2 = 0;
		for(int i=1;i<a;i++) if(((x[i]>>k)&1)==1) s1++;
		for(int i=1;i<b;i++) if(((y[i]>>k)&1)==1) s2++;
		if(((x[a]>>k)&1)==1) s2++;
		if(((y[b]>>k)&1)==1) s1++;
		if(s1%2!=s2%2)
		{
			printf("0");
			return 0;
		}
		ans *= power(2,(long long int)(a-1)*(b-1));
		ans %= MOD;
	}
	printf("%lld",ans);
}
0