結果

問題 No.1210 XOR Grid
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-03 16:42:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,148 KB
最終ジャッジ日時 2024-10-13 10:11:10
合計ジャッジ時間 40,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
44,460 KB
testcase_01 AC 492 ms
44,200 KB
testcase_02 AC 491 ms
44,072 KB
testcase_03 AC 498 ms
44,208 KB
testcase_04 AC 466 ms
44,040 KB
testcase_05 AC 471 ms
44,068 KB
testcase_06 AC 479 ms
44,076 KB
testcase_07 AC 470 ms
44,196 KB
testcase_08 AC 464 ms
43,952 KB
testcase_09 AC 473 ms
43,944 KB
testcase_10 AC 467 ms
44,460 KB
testcase_11 AC 478 ms
44,208 KB
testcase_12 AC 484 ms
44,212 KB
testcase_13 AC 490 ms
44,208 KB
testcase_14 AC 480 ms
44,080 KB
testcase_15 AC 485 ms
44,320 KB
testcase_16 AC 476 ms
44,196 KB
testcase_17 AC 481 ms
44,068 KB
testcase_18 AC 475 ms
44,068 KB
testcase_19 AC 478 ms
44,196 KB
testcase_20 AC 483 ms
44,208 KB
testcase_21 AC 476 ms
44,204 KB
testcase_22 AC 475 ms
44,204 KB
testcase_23 AC 471 ms
43,952 KB
testcase_24 AC 470 ms
44,204 KB
testcase_25 AC 742 ms
62,592 KB
testcase_26 AC 729 ms
62,664 KB
testcase_27 AC 731 ms
62,412 KB
testcase_28 AC 736 ms
62,328 KB
testcase_29 AC 568 ms
62,560 KB
testcase_30 AC 549 ms
57,752 KB
testcase_31 AC 575 ms
62,440 KB
testcase_32 AC 565 ms
62,332 KB
testcase_33 AC 476 ms
43,948 KB
testcase_34 AC 484 ms
44,204 KB
testcase_35 AC 481 ms
44,200 KB
testcase_36 AC 728 ms
48,300 KB
testcase_37 AC 715 ms
48,296 KB
testcase_38 AC 734 ms
48,556 KB
testcase_39 AC 599 ms
48,048 KB
testcase_40 AC 918 ms
51,444 KB
testcase_41 AC 958 ms
54,508 KB
testcase_42 AC 981 ms
73,148 KB
testcase_43 AC 896 ms
66,896 KB
testcase_44 AC 975 ms
73,036 KB
testcase_45 AC 988 ms
73,072 KB
testcase_46 AC 976 ms
71,740 KB
testcase_47 AC 573 ms
51,108 KB
testcase_48 AC 572 ms
51,260 KB
testcase_49 AC 472 ms
44,204 KB
testcase_50 AC 730 ms
67,760 KB
testcase_51 AC 683 ms
73,020 KB
testcase_52 AC 637 ms
67,248 KB
testcase_53 AC 668 ms
72,596 KB
testcase_54 AC 571 ms
51,124 KB
testcase_55 AC 607 ms
67,248 KB
testcase_56 AC 571 ms
62,852 KB
testcase_57 AC 609 ms
62,464 KB
testcase_58 AC 463 ms
43,944 KB
testcase_59 AC 469 ms
44,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10 ** 9 + 7


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

for _ in range(X):
    A, ma = np.divmod(A, 2)
    B, mb = np.divmod(B, 2)
    if (ma.sum() + mb.sum()) % 2 == 1:
        print(0)
        exit()

cnt = pow(2, N - 1, mod)
ans = pow(cnt, X * (M - 1), mod)
print(ans)
0