結果

問題 No.2430 Damage Zone
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-18 21:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-05-06 03:17:28
合計ジャッジ時間 3,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
84,352 KB
testcase_01 AC 88 ms
81,408 KB
testcase_02 AC 120 ms
86,272 KB
testcase_03 AC 51 ms
61,440 KB
testcase_04 AC 60 ms
63,616 KB
testcase_05 AC 56 ms
64,512 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 52 ms
63,744 KB
testcase_12 AC 53 ms
63,616 KB
testcase_13 AC 48 ms
61,184 KB
testcase_14 AC 115 ms
86,528 KB
testcase_15 AC 118 ms
86,144 KB
testcase_16 AC 120 ms
86,272 KB
testcase_17 AC 72 ms
71,168 KB
testcase_18 AC 60 ms
66,304 KB
testcase_19 AC 45 ms
59,648 KB
testcase_20 AC 86 ms
82,560 KB
testcase_21 AC 57 ms
65,024 KB
testcase_22 AC 62 ms
70,528 KB
testcase_23 AC 60 ms
70,528 KB
testcase_24 AC 61 ms
70,528 KB
testcase_25 AC 84 ms
81,152 KB
testcase_26 AC 89 ms
83,200 KB
testcase_27 AC 71 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())
S=[]
for i in range(H):
    S.append(input())
DP=[[[0 for i in range(K+1)] for i in range(W+1)] for i in range(H+1)]
DP[1][1][0]=1
mod=998244353
for i in range(H):
    for j in range(W):
        if S[i][j]=="#":
            continue
        if i==j==0:
            continue
        for k in range(K):
            if S[i][j]==".":
                DP[i+1][j+1][k]=DP[i][j+1][k]+DP[i+1][j][k]%mod
            else:
                DP[i+1][j+1][k+1]=DP[i][j+1][k]+DP[i+1][j][k]%mod
print(sum(DP[-1][-1][:-1])%mod)
0