結果

問題 No.1210 XOR Grid
ユーザー H3PO4H3PO4
提出日時 2021-12-30 16:01:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,536 KB
最終ジャッジ日時 2024-10-06 09:01:01
合計ジャッジ時間 35,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 57
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M, X = map(int, input().split())
A = np.fromstring(input(), dtype=np.int64, sep=' ')
B = np.fromstring(input(), dtype=np.int64, sep=' ')
MOD = 10 ** 9 + 7
if np.bitwise_xor.reduce(A) == np.bitwise_xor.reduce(B):
    print(pow(pow(2, (N - 1) * (M - 1), MOD), X, MOD))
else:
    print(0)
0