結果
| 問題 | No.1210 XOR Grid | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-09-26 17:35:08 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 76 ms / 2,000 ms | 
| コード長 | 1,807 bytes | 
| コンパイル時間 | 1,961 ms | 
| コンパイル使用メモリ | 196,904 KB | 
| 最終ジャッジ日時 | 2025-01-14 22:31:29 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 57 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:48:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |         int h,w,x; scanf("%d%d%d",&h,&w,&x);
      |                    ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:50:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   50 |         rep(i,h) scanf("%lld",&a[i]);
      |                  ~~~~~^~~~~~~~~~~~~~
main.cpp:51:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   51 |         rep(j,w) scanf("%lld",&b[j]);
      |                  ~~~~~^~~~~~~~~~~~~~
            
            ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
using lint=long long;
class mint{
	static const int MOD=1e9+7;
	int x;
public:
	mint():x(0){}
	mint(long long y){ x=y%MOD; if(x<0) x+=MOD; }
	mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; }
	mint& operator-=(const mint& m){ x-=m.x; if(x<   0) x+=MOD; return *this; }
	mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; }
	mint& operator/=(const mint& m){ return *this*=inverse(m); }
	mint operator+(const mint& m)const{ return mint(*this)+=m; }
	mint operator-(const mint& m)const{ return mint(*this)-=m; }
	mint operator*(const mint& m)const{ return mint(*this)*=m; }
	mint operator/(const mint& m)const{ return mint(*this)/=m; }
	mint operator-()const{ return mint(-x); }
	friend mint inverse(const mint& m){
		int a=m.x,b=MOD,u=1,v=0;
		while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); }
		return u;
	}
	friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=mint(t); return is; }
	friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; }
	int to_int()const{ return x; }
};
mint operator+(long long x,const mint& m){ return mint(x)+m; }
mint operator-(long long x,const mint& m){ return mint(x)-m; }
mint operator*(long long x,const mint& m){ return mint(x)*m; }
mint operator/(long long x,const mint& m){ return mint(x)/m; }
mint pow(mint m,long long k){
	mint res=1;
	for(;k>0;k>>=1,m*=m) if(k&1) res*=m;
	return res;
}
int main(){
	int h,w,x; scanf("%d%d%d",&h,&w,&x);
	vector<lint> a(h),b(w);
	rep(i,h) scanf("%lld",&a[i]);
	rep(j,w) scanf("%lld",&b[j]);
	lint row=0,col=0;
	rep(i,h) row^=a[i];
	rep(j,w) col^=b[j];
	if(row!=col){
		puts("0");
		return 0;
	}
	cout<<pow(mint(2),lint(h-1)*(w-1)*x)<<'\n';
	return 0;
}
            
            
            
        