結果

問題 No.1210 XOR Grid
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-31 18:29:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,576 KB
最終ジャッジ日時 2024-11-16 20:30:44
合計ジャッジ時間 10,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 23 ms
10,624 KB
testcase_09 AC 23 ms
10,624 KB
testcase_10 AC 23 ms
10,624 KB
testcase_11 AC 23 ms
10,752 KB
testcase_12 AC 24 ms
10,496 KB
testcase_13 AC 23 ms
10,624 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 AC 24 ms
10,624 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 24 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 23 ms
10,624 KB
testcase_21 AC 24 ms
10,624 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 24 ms
10,496 KB
testcase_24 AC 24 ms
10,752 KB
testcase_25 AC 129 ms
35,116 KB
testcase_26 AC 129 ms
32,424 KB
testcase_27 AC 132 ms
32,424 KB
testcase_28 AC 140 ms
32,684 KB
testcase_29 AC 133 ms
32,552 KB
testcase_30 AC 123 ms
30,644 KB
testcase_31 AC 134 ms
32,552 KB
testcase_32 AC 133 ms
34,980 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 25 ms
10,752 KB
testcase_35 AC 26 ms
10,752 KB
testcase_36 AC 90 ms
13,888 KB
testcase_37 AC 87 ms
13,892 KB
testcase_38 AC 87 ms
13,764 KB
testcase_39 AC 86 ms
13,908 KB
testcase_40 AC 146 ms
16,564 KB
testcase_41 AC 152 ms
16,268 KB
testcase_42 AC 232 ms
42,596 KB
testcase_43 AC 236 ms
41,884 KB
testcase_44 AC 234 ms
42,388 KB
testcase_45 AC 242 ms
43,512 KB
testcase_46 AC 225 ms
43,696 KB
testcase_47 AC 156 ms
16,404 KB
testcase_48 AC 154 ms
16,412 KB
testcase_49 AC 26 ms
10,624 KB
testcase_50 AC 210 ms
38,064 KB
testcase_51 AC 231 ms
42,064 KB
testcase_52 AC 220 ms
39,460 KB
testcase_53 AC 226 ms
44,576 KB
testcase_54 AC 156 ms
16,404 KB
testcase_55 AC 212 ms
41,000 KB
testcase_56 AC 132 ms
35,116 KB
testcase_57 AC 182 ms
33,112 KB
testcase_58 AC 26 ms
10,624 KB
testcase_59 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
mod = 10 ** 9 + 7
ax, bx = 0, 0
for i in range(n):
    ax ^= a[i]
for i in range(m):
    bx ^= b[i]
if ax != bx:
    print(0)
else:
    print(pow(pow(2, x, mod), (n - 1) * (m - 1), mod))
0