結果

問題 No.1210 XOR Grid
ユーザー dachengzdachengz
提出日時 2023-01-26 10:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 120,176 KB
最終ジャッジ日時 2024-06-27 06:48:55
合計ジャッジ時間 8,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,788 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
52,492 KB
testcase_03 AC 37 ms
52,204 KB
testcase_04 AC 37 ms
52,092 KB
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 37 ms
52,188 KB
testcase_08 AC 36 ms
53,184 KB
testcase_09 AC 38 ms
52,456 KB
testcase_10 AC 38 ms
51,816 KB
testcase_11 AC 37 ms
52,608 KB
testcase_12 AC 38 ms
52,676 KB
testcase_13 AC 37 ms
52,824 KB
testcase_14 AC 37 ms
53,036 KB
testcase_15 AC 38 ms
52,692 KB
testcase_16 AC 37 ms
53,164 KB
testcase_17 AC 36 ms
53,280 KB
testcase_18 AC 37 ms
52,924 KB
testcase_19 AC 37 ms
52,240 KB
testcase_20 AC 37 ms
53,092 KB
testcase_21 AC 37 ms
51,744 KB
testcase_22 AC 37 ms
53,304 KB
testcase_23 AC 37 ms
52,424 KB
testcase_24 AC 38 ms
52,076 KB
testcase_25 AC 95 ms
92,056 KB
testcase_26 AC 92 ms
92,136 KB
testcase_27 AC 91 ms
92,544 KB
testcase_28 AC 91 ms
92,432 KB
testcase_29 AC 89 ms
92,184 KB
testcase_30 AC 87 ms
99,160 KB
testcase_31 AC 88 ms
92,432 KB
testcase_32 AC 92 ms
91,836 KB
testcase_33 AC 37 ms
52,524 KB
testcase_34 AC 36 ms
52,032 KB
testcase_35 AC 36 ms
51,944 KB
testcase_36 AC 60 ms
81,968 KB
testcase_37 AC 59 ms
82,140 KB
testcase_38 AC 60 ms
83,460 KB
testcase_39 AC 60 ms
81,436 KB
testcase_40 AC 97 ms
112,176 KB
testcase_41 AC 96 ms
112,252 KB
testcase_42 AC 139 ms
116,584 KB
testcase_43 AC 126 ms
110,760 KB
testcase_44 AC 141 ms
114,556 KB
testcase_45 AC 140 ms
114,888 KB
testcase_46 AC 133 ms
117,112 KB
testcase_47 AC 97 ms
112,096 KB
testcase_48 AC 96 ms
112,460 KB
testcase_49 AC 37 ms
52,092 KB
testcase_50 AC 102 ms
99,032 KB
testcase_51 AC 132 ms
115,056 KB
testcase_52 AC 132 ms
120,176 KB
testcase_53 AC 136 ms
115,676 KB
testcase_54 AC 99 ms
112,752 KB
testcase_55 AC 113 ms
105,288 KB
testcase_56 AC 93 ms
92,568 KB
testcase_57 AC 103 ms
98,432 KB
testcase_58 AC 37 ms
51,740 KB
testcase_59 AC 36 ms
51,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, X = map(int, input().split())
A = map(int, input().split())
B = map(int, input().split())
tmp = 0
for a in A:
    tmp ^= a
for b in B:
    tmp ^= b
if tmp:
    print(0)
else:
    mod = 10 ** 9 + 7
    mod1 = mod - 1
    print(pow(2, (N - 1) * (M - 1) % mod1 * X % mod1, mod))
0