結果

問題 No.2838 Diagonals
ユーザー miztommiztom
提出日時 2024-08-09 22:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 81,092 KB
最終ジャッジ日時 2024-08-09 22:34:00
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 40 ms
54,400 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 137 ms
80,480 KB
testcase_09 AC 138 ms
81,092 KB
testcase_10 AC 79 ms
80,408 KB
testcase_11 AC 115 ms
80,832 KB
testcase_12 AC 70 ms
78,080 KB
testcase_13 AC 123 ms
79,484 KB
testcase_14 AC 89 ms
76,672 KB
testcase_15 AC 61 ms
71,040 KB
testcase_16 AC 79 ms
76,672 KB
testcase_17 AC 94 ms
76,892 KB
testcase_18 AC 112 ms
78,524 KB
testcase_19 AC 114 ms
78,188 KB
testcase_20 AC 111 ms
78,452 KB
testcase_21 AC 100 ms
77,704 KB
testcase_22 AC 98 ms
77,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=998244353
n,m=map(int,input().split())
p=[*range(n*m)]
c=[1]*n*m
def R(x):
    while x!=p[x]:x=p[x]
    return x
def U(u,v):
    u,v=R(u),R(v)
    if u==v:return 499122177
    if c[u]<c[v]:u,v=v,u
    c[u]+=c[v];p[v]=p[u]
    return 1
d="."*m
r=1
for i in range(0,n*m,m):
    s=input()+"."
    for j in range(m):
        if s[j]=="#":
            r=4*r%M
            if s[j+1]=="#":r=r*U(i+j,i+j+1)%M
            if d[j]=="#":r=r*U(i+j,i+j-m)%M
    d=s
print(r)
0