結果

問題 No.2430 Damage Zone
ユーザー hato336hato336
提出日時 2023-08-18 21:27:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-11-28 05:41:31
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
86,056 KB
testcase_01 AC 159 ms
82,944 KB
testcase_02 AC 273 ms
93,868 KB
testcase_03 AC 65 ms
67,584 KB
testcase_04 AC 65 ms
68,096 KB
testcase_05 AC 65 ms
68,352 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 92 ms
76,800 KB
testcase_12 AC 88 ms
76,672 KB
testcase_13 AC 53 ms
61,440 KB
testcase_14 AC 297 ms
94,976 KB
testcase_15 AC 290 ms
95,104 KB
testcase_16 AC 288 ms
95,104 KB
testcase_17 AC 133 ms
80,500 KB
testcase_18 AC 91 ms
76,928 KB
testcase_19 AC 55 ms
64,000 KB
testcase_20 AC 179 ms
84,096 KB
testcase_21 AC 91 ms
76,416 KB
testcase_22 AC 71 ms
70,912 KB
testcase_23 AC 71 ms
70,912 KB
testcase_24 AC 74 ms
70,784 KB
testcase_25 AC 129 ms
82,048 KB
testcase_26 AC 154 ms
84,736 KB
testcase_27 AC 117 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,k = map(int,input().split())
grid = []
for i in range(h):
    grid.append(list(input()))
mod = 998244353
dist = [[[0 for i in range(w)] for j in range(h) ] for wfo2bor3 in range(k+1)]
dist[k][0][0] = 1

for i in range(h):
    for j in range(w):
        for health in range(k+1):
            if i != h-1:
                if grid[i+1][j] == '.':
                    dist[health][i+1][j] += dist[health][i][j]
                    dist[health][i+1][j] %= mod
                if grid[i+1][j] == 'o' and health >= 2:
                    dist[health-1][i+1][j] += dist[health][i][j]
                    dist[health-1][i+1][j] %= mod
            
            if j != w-1:
                if grid[i][j+1] == '.':
                    dist[health][i][j+1] += dist[health][i][j]
                    dist[health][i][j+1] %= mod
                if grid[i][j+1] == 'o' and health >= 2:
                    dist[health-1][i][j+1] += dist[health][i][j]
                    dist[health-1][i][j+1] %= mod
ans = 0
for i in range(1,k+1):
    ans += dist[i][h-1][w-1]
    ans %= mod
print(ans)
0