結果

問題 No.1210 XOR Grid
ユーザー tamatotamato
提出日時 2020-12-14 16:51:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 130,628 KB
最終ジャッジ日時 2024-09-20 00:48:30
合計ジャッジ時間 9,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 57
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, M, X = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    aa = 0
    for a in A:
        aa ^= a
    bb = 0
    for b in B:
        bb ^= b
    if aa != bb:
        print(0)
    else:
        print(pow(1 << X, (N-1) * (M-1), mod))


if __name__ == '__main__':
    main()
0