結果
問題 |
No.1210 XOR Grid
|
ユーザー |
|
提出日時 | 2020-08-30 16:26:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 411 ms / 2,000 ms |
コード長 | 186 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 264,248 KB |
最終ジャッジ日時 | 2024-11-15 11:15:34 |
合計ジャッジ時間 | 11,773 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 57 |
ソースコード
M=10**9+7;n,m,x,*v=map(int,open(0).read().split());a=v[:n];b=v[n:];print(pow(pow(2,(n-1)*(m-1),M),x,M)*all([(sum([(s>>i)&1for s in b])-sum([(s>>i)&1for s in a]))%2==0for i in range(x)]))