結果

問題 No.1210 XOR Grid
ユーザー 37zigen37zigen
提出日時 2020-08-30 14:19:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-11-15 07:34:58
合計ジャッジ時間 35,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,444 KB
testcase_01 AC 30 ms
53,252 KB
testcase_02 AC 30 ms
17,568 KB
testcase_03 AC 30 ms
53,072 KB
testcase_04 AC 30 ms
17,440 KB
testcase_05 AC 32 ms
53,260 KB
testcase_06 AC 30 ms
17,440 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 1,626 ms
35,000 KB
testcase_26 AC 1,585 ms
32,692 KB
testcase_27 AC 1,597 ms
32,696 KB
testcase_28 AC 1,607 ms
32,692 KB
testcase_29 AC 174 ms
32,568 KB
testcase_30 AC 131 ms
30,752 KB
testcase_31 AC 174 ms
32,696 KB
testcase_32 AC 144 ms
35,260 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 915 ms
15,300 KB
testcase_37 AC 856 ms
15,420 KB
testcase_38 AC 925 ms
15,276 KB
testcase_39 AC 496 ms
15,324 KB
testcase_40 AC 1,626 ms
19,632 KB
testcase_41 AC 1,822 ms
19,484 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 145 ms
18,096 KB
testcase_48 AC 146 ms
17,968 KB
testcase_49 AC 31 ms
10,752 KB
testcase_50 AC 930 ms
37,828 KB
testcase_51 AC 356 ms
44,476 KB
testcase_52 AC 273 ms
39,808 KB
testcase_53 AC 246 ms
41,968 KB
testcase_54 AC 146 ms
18,088 KB
testcase_55 AC 214 ms
40,716 KB
testcase_56 AC 197 ms
35,000 KB
testcase_57 AC 281 ms
33,348 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 31 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7
N,M,X=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans=1
for x in range(X):
    a=[(v>>x)%2 for v in A]
    b=[(v>>x)%2 for v in B]
    if sum(a)%2!=sum(b)%2:
        exit(print(0))
    ans=ans*pow(2,(N-1)*(M-1),MOD)%MOD
print(ans)
0