結果

問題 No.1210 XOR Grid
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-28 19:47:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 268,020 KB
最終ジャッジ日時 2024-09-28 09:56:56
合計ジャッジ時間 14,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,456 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 40 ms
51,584 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 41 ms
51,964 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 41 ms
52,480 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 41 ms
51,584 KB
testcase_24 AC 41 ms
51,456 KB
testcase_25 AC 357 ms
199,332 KB
testcase_26 AC 347 ms
196,020 KB
testcase_27 AC 343 ms
195,884 KB
testcase_28 AC 347 ms
197,596 KB
testcase_29 AC 124 ms
108,116 KB
testcase_30 AC 116 ms
98,176 KB
testcase_31 AC 128 ms
108,132 KB
testcase_32 AC 129 ms
107,556 KB
testcase_33 AC 41 ms
51,840 KB
testcase_34 AC 41 ms
51,968 KB
testcase_35 AC 42 ms
51,712 KB
testcase_36 AC 203 ms
187,520 KB
testcase_37 AC 197 ms
181,120 KB
testcase_38 AC 210 ms
190,848 KB
testcase_39 AC 144 ms
142,976 KB
testcase_40 AC 341 ms
259,660 KB
testcase_41 AC 354 ms
260,648 KB
testcase_42 AC 634 ms
267,932 KB
testcase_43 AC 561 ms
258,992 KB
testcase_44 AC 626 ms
267,808 KB
testcase_45 AC 625 ms
268,020 KB
testcase_46 AC 621 ms
265,692 KB
testcase_47 AC 126 ms
114,432 KB
testcase_48 AC 130 ms
114,560 KB
testcase_49 AC 45 ms
57,728 KB
testcase_50 AC 334 ms
170,860 KB
testcase_51 AC 177 ms
134,216 KB
testcase_52 AC 168 ms
128,012 KB
testcase_53 AC 160 ms
128,236 KB
testcase_54 AC 122 ms
114,560 KB
testcase_55 AC 150 ms
134,648 KB
testcase_56 AC 120 ms
111,000 KB
testcase_57 AC 147 ms
125,800 KB
testcase_58 AC 38 ms
52,096 KB
testcase_59 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1210

MOD = 10 ** 9 + 7

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

    answer = 1
    for k in range(X):
        mask = 1 << k
        a_array = [ (1 if a & mask > 0 else 0) for a in A ]
        b_array = [ (1 if b & mask > 0 else 0) for b in B ]

        a_ = 0
        for a in a_array:
            a_ ^= a
        b_ = 0
        for b in b_array:
            b_ ^= b
        if a_ != b_:
            answer *= 0
            break
        
        if N == 1 or M == 1:
            ans = 1
        else:
            ans = pow(2, (N - 1) * (M - 1), MOD)
        answer *= ans
        answer %= MOD
    print(answer)






if __name__ == "__main__":
    main()
0