結果

問題 No.1210 XOR Grid
ユーザー mkawa2mkawa2
提出日時 2021-07-14 11:42:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,752 KB
最終ジャッジ日時 2024-07-03 11:21:21
合計ジャッジ時間 10,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 133 ms
33,772 KB
testcase_26 AC 137 ms
32,632 KB
testcase_27 AC 139 ms
32,624 KB
testcase_28 AC 140 ms
32,628 KB
testcase_29 AC 138 ms
32,760 KB
testcase_30 AC 129 ms
30,836 KB
testcase_31 AC 140 ms
32,632 KB
testcase_32 AC 134 ms
33,640 KB
testcase_33 AC 28 ms
10,880 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 90 ms
14,724 KB
testcase_37 AC 88 ms
14,720 KB
testcase_38 AC 87 ms
14,852 KB
testcase_39 AC 86 ms
14,044 KB
testcase_40 AC 147 ms
19,320 KB
testcase_41 AC 147 ms
19,408 KB
testcase_42 AC 240 ms
45,752 KB
testcase_43 AC 249 ms
42,088 KB
testcase_44 AC 238 ms
45,676 KB
testcase_45 AC 244 ms
45,596 KB
testcase_46 AC 242 ms
43,616 KB
testcase_47 AC 166 ms
19,368 KB
testcase_48 AC 155 ms
19,212 KB
testcase_49 AC 30 ms
10,624 KB
testcase_50 AC 210 ms
38,184 KB
testcase_51 AC 243 ms
44,700 KB
testcase_52 AC 226 ms
39,664 KB
testcase_53 AC 242 ms
44,616 KB
testcase_54 AC 162 ms
19,308 KB
testcase_55 AC 222 ms
41,064 KB
testcase_56 AC 138 ms
33,648 KB
testcase_57 AC 183 ms
33,180 KB
testcase_58 AC 28 ms
10,752 KB
testcase_59 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n, m, x = LI()
aa = LI()
bb = LI()

s = 0
for a in aa+bb:
    s ^= a

if s:
    print(0)
    exit()

p = pow(2, (m-1)*(n-1), md)
ans = pow(p, x, md)
print(ans)
0