結果

問題 No.1210 XOR Grid
ユーザー ああいいああいい
提出日時 2022-01-10 13:51:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 132,772 KB
最終ジャッジ日時 2024-11-14 10:51:37
合計ジャッジ時間 9,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,068 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,284 KB
testcase_03 AC 37 ms
52,868 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
53,896 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,912 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,212 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 38 ms
52,764 KB
testcase_15 WA -
testcase_16 AC 39 ms
52,360 KB
testcase_17 AC 38 ms
51,816 KB
testcase_18 AC 38 ms
53,312 KB
testcase_19 AC 38 ms
52,612 KB
testcase_20 AC 38 ms
51,876 KB
testcase_21 AC 37 ms
52,312 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 103 ms
105,640 KB
testcase_26 AC 98 ms
105,516 KB
testcase_27 AC 102 ms
105,428 KB
testcase_28 AC 101 ms
105,460 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 37 ms
52,424 KB
testcase_34 AC 36 ms
52,360 KB
testcase_35 AC 37 ms
52,248 KB
testcase_36 AC 75 ms
97,472 KB
testcase_37 AC 73 ms
97,008 KB
testcase_38 AC 73 ms
97,648 KB
testcase_39 AC 70 ms
95,968 KB
testcase_40 AC 104 ms
116,116 KB
testcase_41 AC 104 ms
115,800 KB
testcase_42 AC 151 ms
125,008 KB
testcase_43 AC 151 ms
132,772 KB
testcase_44 AC 150 ms
124,984 KB
testcase_45 AC 150 ms
124,416 KB
testcase_46 AC 145 ms
128,092 KB
testcase_47 AC 105 ms
115,684 KB
testcase_48 AC 104 ms
115,860 KB
testcase_49 AC 35 ms
52,848 KB
testcase_50 AC 117 ms
108,916 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 105 ms
116,192 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

a = 0
for i in A:
    a ^= i
b = 0
for i in B:
    b ^= i
if a != b:
    print(-1)
else:
    P = 10 ** 9 + 7
    t = pow(2,X,P)
    ans = pow(t,(N-1)*(M-1),P)
    print(ans)
0