結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 37 ms
51,456 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 37 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 37 ms
51,712 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 37 ms
51,828 KB
testcase_15 WA -
testcase_16 AC 36 ms
51,712 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 37 ms
51,456 KB
testcase_19 AC 38 ms
51,948 KB
testcase_20 AC 40 ms
51,456 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 108 ms
105,748 KB
testcase_26 AC 104 ms
105,360 KB
testcase_27 AC 104 ms
105,360 KB
testcase_28 AC 103 ms
105,144 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 38 ms
52,072 KB
testcase_34 AC 38 ms
51,712 KB
testcase_35 AC 38 ms
51,968 KB
testcase_36 AC 74 ms
96,384 KB
testcase_37 AC 74 ms
96,512 KB
testcase_38 AC 73 ms
96,512 KB
testcase_39 AC 73 ms
95,744 KB
testcase_40 AC 108 ms
115,968 KB
testcase_41 AC 112 ms
115,712 KB
testcase_42 AC 158 ms
125,204 KB
testcase_43 AC 155 ms
132,696 KB
testcase_44 AC 160 ms
124,884 KB
testcase_45 AC 152 ms
124,672 KB
testcase_46 AC 150 ms
128,244 KB
testcase_47 AC 113 ms
115,968 KB
testcase_48 AC 111 ms
115,712 KB
testcase_49 AC 37 ms
51,840 KB
testcase_50 AC 122 ms
108,900 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 110 ms
115,832 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