結果

問題 No.1210 XOR Grid
ユーザー rlangevinrlangevin
提出日時 2023-07-11 12:19:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 137,172 KB
最終ジャッジ日時 2024-09-13 02:57:32
合計ジャッジ時間 12,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,444 KB
testcase_01 AC 36 ms
51,952 KB
testcase_02 AC 40 ms
58,336 KB
testcase_03 AC 37 ms
52,540 KB
testcase_04 AC 36 ms
53,124 KB
testcase_05 AC 37 ms
52,304 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 37 ms
52,884 KB
testcase_08 AC 38 ms
52,392 KB
testcase_09 AC 36 ms
52,436 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 37 ms
52,476 KB
testcase_12 AC 37 ms
52,948 KB
testcase_13 AC 37 ms
52,328 KB
testcase_14 AC 37 ms
52,608 KB
testcase_15 AC 37 ms
53,140 KB
testcase_16 AC 37 ms
53,260 KB
testcase_17 AC 37 ms
52,340 KB
testcase_18 AC 38 ms
52,692 KB
testcase_19 AC 38 ms
52,372 KB
testcase_20 AC 37 ms
52,668 KB
testcase_21 AC 38 ms
53,496 KB
testcase_22 AC 37 ms
52,264 KB
testcase_23 AC 36 ms
53,416 KB
testcase_24 AC 37 ms
52,688 KB
testcase_25 AC 317 ms
110,764 KB
testcase_26 AC 315 ms
112,224 KB
testcase_27 AC 306 ms
112,220 KB
testcase_28 AC 317 ms
110,468 KB
testcase_29 AC 132 ms
112,440 KB
testcase_30 AC 105 ms
99,608 KB
testcase_31 AC 122 ms
112,060 KB
testcase_32 AC 129 ms
110,616 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 38 ms
51,968 KB
testcase_35 AC 37 ms
51,712 KB
testcase_36 AC 116 ms
97,408 KB
testcase_37 AC 117 ms
98,688 KB
testcase_38 AC 119 ms
98,304 KB
testcase_39 AC 95 ms
96,896 KB
testcase_40 AC 189 ms
115,968 KB
testcase_41 AC 191 ms
115,728 KB
testcase_42 AC 577 ms
137,172 KB
testcase_43 AC 271 ms
133,128 KB
testcase_44 AC 574 ms
137,048 KB
testcase_45 AC 572 ms
137,156 KB
testcase_46 AC 544 ms
134,468 KB
testcase_47 AC 117 ms
115,768 KB
testcase_48 AC 112 ms
115,968 KB
testcase_49 AC 41 ms
57,600 KB
testcase_50 AC 156 ms
112,052 KB
testcase_51 AC 191 ms
135,624 KB
testcase_52 AC 179 ms
129,556 KB
testcase_53 AC 169 ms
135,636 KB
testcase_54 AC 113 ms
115,968 KB
testcase_55 AC 141 ms
134,628 KB
testcase_56 AC 128 ms
110,676 KB
testcase_57 AC 128 ms
121,176 KB
testcase_58 AC 38 ms
53,012 KB
testcase_59 AC 38 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, X = map(int, input().split())
A = list(map(int, input().split()))
A.extend(list(map(int, input().split())))
mod = 10 ** 9 + 7
for i in range(X + 1):
    cnt = 0
    for j in range(N + M):
        cnt += A[j] >> i
    if cnt % 2:
        print(0)
        exit()

print(pow(2, (N - 1)*(M - 1)*X, mod))
0