結果

問題 No.1210 XOR Grid
ユーザー shotoyooshotoyoo
提出日時 2020-08-30 16:09:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 267,916 KB
最終ジャッジ日時 2024-11-15 10:49:36
合計ジャッジ時間 9,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,288 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 38 ms
51,880 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 38 ms
52,500 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 38 ms
52,088 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 229 ms
199,760 KB
testcase_26 AC 213 ms
195,696 KB
testcase_27 AC 214 ms
196,152 KB
testcase_28 AC 215 ms
197,168 KB
testcase_29 AC 105 ms
108,256 KB
testcase_30 AC 95 ms
97,740 KB
testcase_31 AC 105 ms
108,084 KB
testcase_32 AC 107 ms
107,428 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 37 ms
51,840 KB
testcase_35 AC 38 ms
51,840 KB
testcase_36 AC 188 ms
188,160 KB
testcase_37 AC 181 ms
182,272 KB
testcase_38 AC 192 ms
191,104 KB
testcase_39 AC 134 ms
143,692 KB
testcase_40 AC 296 ms
260,232 KB
testcase_41 AC 305 ms
260,856 KB
testcase_42 AC 361 ms
267,916 KB
testcase_43 AC 318 ms
258,468 KB
testcase_44 AC 360 ms
267,628 KB
testcase_45 AC 361 ms
267,864 KB
testcase_46 AC 349 ms
265,172 KB
testcase_47 AC 103 ms
114,672 KB
testcase_48 AC 109 ms
114,560 KB
testcase_49 AC 41 ms
57,728 KB
testcase_50 AC 190 ms
171,080 KB
testcase_51 AC 159 ms
134,784 KB
testcase_52 AC 148 ms
129,212 KB
testcase_53 AC 151 ms
128,448 KB
testcase_54 AC 102 ms
114,396 KB
testcase_55 AC 135 ms
134,296 KB
testcase_56 AC 111 ms
110,868 KB
testcase_57 AC 128 ms
125,748 KB
testcase_58 AC 38 ms
52,224 KB
testcase_59 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n,m,x = list(map(int, input().split()))
a = list(map(int, input().split()))
b = list(map(int, input().split()))
M = 10**9+7
def sub(a,b):
    xa = 0
    xb = 0
    for num in a:
        xa ^= num
    for num in b:
        xb ^= num
    if xa!=xb:
        return 0
    else:
        return pow(2,len(a)*len(b)-(len(a)+len(b))+1,M)
ans = 1
for i in range(x):
    res = sub([(item>>i)&1 for item in a], [(item>>i)&1 for item in b])
    if res == 0:
        ans = 0
        break
    else:
        ans *= res
        ans %= M
print(ans)
0