結果

問題 No.226 0-1パズル
ユーザー maspymaspy
提出日時 2020-03-28 02:57:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 475 ms / 5,000 ms
コード長 918 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,396 KB
最終ジャッジ日時 2024-07-26 14:25:13
合計ジャッジ時間 11,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
44,132 KB
testcase_01 AC 466 ms
44,396 KB
testcase_02 AC 456 ms
43,784 KB
testcase_03 AC 455 ms
44,392 KB
testcase_04 AC 454 ms
43,784 KB
testcase_05 AC 460 ms
43,652 KB
testcase_06 AC 459 ms
43,904 KB
testcase_07 AC 462 ms
43,804 KB
testcase_08 AC 454 ms
44,140 KB
testcase_09 AC 467 ms
43,652 KB
testcase_10 AC 459 ms
44,136 KB
testcase_11 AC 460 ms
44,004 KB
testcase_12 AC 457 ms
44,008 KB
testcase_13 AC 467 ms
44,396 KB
testcase_14 AC 455 ms
44,144 KB
testcase_15 AC 455 ms
43,908 KB
testcase_16 AC 450 ms
44,016 KB
testcase_17 AC 475 ms
44,392 KB
testcase_18 AC 467 ms
44,132 KB
testcase_19 AC 466 ms
43,780 KB
testcase_20 AC 465 ms
44,140 KB
testcase_21 AC 465 ms
43,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

MOD = 10 ** 9 + 7

H, W = map(int, readline().split())
S = np.frombuffer(read(), 'S1').reshape(H, -1)[:, :W]
answer = 0
for _ in range(2):
    S = S.T
    p = 1
    for row in S:
        x = 0
        if np.all(row[::2] != b'0') and np.all(row[1::2] != b'1'):
            x += 1
        if np.all(row[::2] != b'1') and np.all(row[1::2] != b'0'):
            x += 1
        p *= x
    answer += p

if all((np.all(S[::2, ::2] != b'0'),
        np.all(S[1::2, 1::2] != b'0'),
        np.all(S[1::2, ::2] != b'1'),
        np.all(S[::2, 1::2] != b'1'))):
    answer -= 1

if all((np.all(S[::2, ::2] != b'1'),
        np.all(S[1::2, 1::2] != b'1'),
        np.all(S[1::2, ::2] != b'0'),
        np.all(S[::2, 1::2] != b'0'))):
    answer -= 1


print(answer % MOD)
0