結果

問題 No.2430 Damage Zone
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 21:42:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-11-28 06:17:38
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
85,376 KB
testcase_01 AC 88 ms
81,920 KB
testcase_02 AC 126 ms
91,776 KB
testcase_03 AC 56 ms
61,824 KB
testcase_04 AC 57 ms
63,872 KB
testcase_05 AC 56 ms
64,128 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 63 ms
67,328 KB
testcase_12 AC 63 ms
67,456 KB
testcase_13 AC 42 ms
57,728 KB
testcase_14 AC 128 ms
92,800 KB
testcase_15 AC 126 ms
92,416 KB
testcase_16 AC 125 ms
92,416 KB
testcase_17 AC 91 ms
79,616 KB
testcase_18 AC 71 ms
72,448 KB
testcase_19 AC 43 ms
57,728 KB
testcase_20 AC 96 ms
82,432 KB
testcase_21 AC 65 ms
68,096 KB
testcase_22 AC 64 ms
68,352 KB
testcase_23 AC 68 ms
68,096 KB
testcase_24 AC 62 ms
66,688 KB
testcase_25 AC 95 ms
81,152 KB
testcase_26 AC 99 ms
83,584 KB
testcase_27 AC 98 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin

H,W,K = map(int,stdin.readline().split())

S = [stdin.readline()[:-1] for i in range(H)]

dp = [[[0] * K for j in range(W)] for i in range(H)]

dp[0][0][0] = 1
mod = 998244353

for i in range(H):
    for j in range(W):
        for k in range(K):

            if dp[i][j][k] == 0:
                continue

            for nx,ny in ( (i,j+1),(i+1,j) ):

                if nx < H and ny < W and S[nx][ny] != "#":
                    nk = k + (1 if S[nx][ny] == "o" else 0)

                    if nk < K:

                        dp[nx][ny][nk] += dp[i][j][k]
                        dp[nx][ny][nk] %= mod

ans = sum(dp[-1][-1]) % mod

print (ans)
0