結果

問題 No.226 0-1パズル
ユーザー asumo0729asumo0729
提出日時 2022-07-16 11:11:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 1,243 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 74,264 KB
最終ジャッジ日時 2024-07-26 14:28:44
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,572 KB
testcase_01 AC 46 ms
63,204 KB
testcase_02 AC 48 ms
62,244 KB
testcase_03 AC 45 ms
62,988 KB
testcase_04 AC 63 ms
72,408 KB
testcase_05 AC 46 ms
61,620 KB
testcase_06 AC 49 ms
61,332 KB
testcase_07 AC 47 ms
62,540 KB
testcase_08 AC 46 ms
61,220 KB
testcase_09 AC 45 ms
61,576 KB
testcase_10 AC 46 ms
61,708 KB
testcase_11 AC 46 ms
61,312 KB
testcase_12 AC 46 ms
61,592 KB
testcase_13 AC 47 ms
61,428 KB
testcase_14 AC 48 ms
62,988 KB
testcase_15 AC 48 ms
62,124 KB
testcase_16 AC 45 ms
61,676 KB
testcase_17 AC 63 ms
72,600 KB
testcase_18 AC 61 ms
74,264 KB
testcase_19 AC 64 ms
73,568 KB
testcase_20 AC 65 ms
73,404 KB
testcase_21 AC 64 ms
73,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
#mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

def f(s):
    cnt = 1
    for si in s:
        c = all(x != '1' for x in si[::2]) & all(x != '0' for x in si[1::2])
        c += all(x != '0' for x in si[::2]) & all(x != '1' for x in si[1::2])
        cnt *= c % mod
    return cnt

H, W = lp()
S = [sp() for _ in range(H)]
ans = f(S) + f(zip(*S))
ans %= mod
r = '01'
c1 = c2 = 1
for h in range(H):
    for w in range(W):
        if S[h][w] == r[(h + w) % 2]: c1 = 0
        if S[h][w] == r[(h + w + 1) % 2]: c2 = 0
ans -= c1 + c2
ans %= mod
print(ans)
0