結果

問題 No.1210 XOR Grid
ユーザー H3PO4H3PO4
提出日時 2021-12-30 16:01:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,536 KB
最終ジャッジ日時 2024-10-06 09:01:01
合計ジャッジ時間 35,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
44,192 KB
testcase_01 AC 535 ms
44,296 KB
testcase_02 AC 536 ms
44,308 KB
testcase_03 AC 491 ms
44,088 KB
testcase_04 AC 501 ms
44,060 KB
testcase_05 AC 491 ms
44,184 KB
testcase_06 AC 498 ms
44,064 KB
testcase_07 AC 495 ms
44,320 KB
testcase_08 AC 495 ms
44,068 KB
testcase_09 AC 491 ms
44,308 KB
testcase_10 AC 491 ms
44,304 KB
testcase_11 AC 494 ms
44,064 KB
testcase_12 AC 496 ms
44,312 KB
testcase_13 AC 497 ms
44,312 KB
testcase_14 AC 504 ms
44,416 KB
testcase_15 AC 505 ms
44,308 KB
testcase_16 AC 505 ms
44,048 KB
testcase_17 AC 497 ms
44,312 KB
testcase_18 AC 503 ms
44,568 KB
testcase_19 AC 498 ms
44,192 KB
testcase_20 AC 499 ms
44,320 KB
testcase_21 AC 496 ms
44,312 KB
testcase_22 AC 491 ms
44,056 KB
testcase_23 AC 496 ms
44,056 KB
testcase_24 AC 498 ms
44,580 KB
testcase_25 AC 516 ms
51,536 KB
testcase_26 AC 516 ms
51,204 KB
testcase_27 AC 516 ms
51,272 KB
testcase_28 AC 513 ms
51,484 KB
testcase_29 AC 507 ms
51,468 KB
testcase_30 AC 508 ms
49,184 KB
testcase_31 AC 507 ms
51,348 KB
testcase_32 AC 502 ms
51,332 KB
testcase_33 AC 482 ms
44,316 KB
testcase_34 AC 492 ms
44,060 KB
testcase_35 AC 485 ms
44,308 KB
testcase_36 AC 502 ms
44,440 KB
testcase_37 AC 495 ms
44,444 KB
testcase_38 AC 500 ms
44,068 KB
testcase_39 AC 502 ms
44,312 KB
testcase_40 AC 513 ms
45,212 KB
testcase_41 AC 509 ms
45,596 KB
testcase_42 AC 525 ms
51,488 KB
testcase_43 AC 533 ms
49,800 KB
testcase_44 AC 533 ms
51,096 KB
testcase_45 AC 534 ms
51,160 KB
testcase_46 AC 532 ms
51,448 KB
testcase_47 AC 513 ms
45,348 KB
testcase_48 AC 517 ms
45,216 KB
testcase_49 AC 492 ms
44,444 KB
testcase_50 AC 526 ms
49,368 KB
testcase_51 AC 543 ms
50,996 KB
testcase_52 AC 550 ms
50,484 KB
testcase_53 AC 561 ms
51,160 KB
testcase_54 AC 534 ms
45,720 KB
testcase_55 AC 557 ms
47,772 KB
testcase_56 AC 536 ms
51,112 KB
testcase_57 AC 549 ms
47,884 KB
testcase_58 AC 516 ms
44,312 KB
testcase_59 AC 514 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M, X = map(int, input().split())
A = np.fromstring(input(), dtype=np.int64, sep=' ')
B = np.fromstring(input(), dtype=np.int64, sep=' ')
MOD = 10 ** 9 + 7
if np.bitwise_xor.reduce(A) == np.bitwise_xor.reduce(B):
    print(pow(pow(2, (N - 1) * (M - 1), MOD), X, MOD))
else:
    print(0)
0