結果

問題 No.2837 Flip Triomino
ユーザー hiro1729hiro1729
提出日時 2024-08-09 22:16:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 65,796 KB
最終ジャッジ日時 2024-08-09 22:16:36
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,472 KB
testcase_01 AC 40 ms
53,288 KB
testcase_02 AC 35 ms
53,520 KB
testcase_03 AC 34 ms
52,068 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,428 KB
testcase_06 AC 34 ms
52,156 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 52 ms
62,216 KB
testcase_10 AC 55 ms
65,076 KB
testcase_11 AC 52 ms
64,176 KB
testcase_12 AC 49 ms
64,468 KB
testcase_13 WA -
testcase_14 AC 51 ms
64,344 KB
testcase_15 AC 51 ms
63,992 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 49 ms
63,628 KB
testcase_21 WA -
testcase_22 AC 53 ms
65,796 KB
testcase_23 AC 55 ms
65,064 KB
testcase_24 AC 58 ms
65,588 KB
testcase_25 WA -
testcase_26 AC 55 ms
64,828 KB
testcase_27 AC 51 ms
62,940 KB
testcase_28 AC 48 ms
62,936 KB
testcase_29 WA -
testcase_30 AC 49 ms
64,568 KB
testcase_31 AC 47 ms
62,872 KB
testcase_32 AC 47 ms
63,896 KB
testcase_33 WA -
testcase_34 AC 35 ms
52,888 KB
testcase_35 AC 41 ms
60,064 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = [input() for _ in range(N)]
c = [0] * 3
d = [0] * 3
for i in range(N):
	for j in range(M):
		if S[i][j] == 'B':
			c[(i + j) % 3] += 1
		if S[i][j] == '?':
			d[(i + j) % 3] += 1
# print(c)
# print(d)
ans = 1
mod = 998244353
for i in range(3):
	if d[i] == 0 and c[i] == 1:
		ans = 0
	elif d[i] >= 1:
		ans *= pow(2, d[i] - 1, mod)
		ans %= mod
print(ans)
0