結果
問題 | No.2430 Damage Zone |
ユーザー | Shirotsume |
提出日時 | 2023-08-18 21:19:39 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,077 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 81,536 KB |
実行使用メモリ | 90,368 KB |
最終ジャッジ日時 | 2024-05-06 03:04:20 |
合計ジャッジ時間 | 3,955 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
86,656 KB |
testcase_01 | AC | 119 ms
83,072 KB |
testcase_02 | AC | 161 ms
90,240 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 50 ms
55,168 KB |
testcase_09 | AC | 50 ms
55,168 KB |
testcase_10 | AC | 51 ms
55,168 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 166 ms
90,240 KB |
testcase_15 | AC | 162 ms
90,368 KB |
testcase_16 | AC | 161 ms
90,368 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 77 ms
70,272 KB |
testcase_23 | AC | 82 ms
71,552 KB |
testcase_24 | AC | 85 ms
71,936 KB |
testcase_25 | AC | 96 ms
75,008 KB |
testcase_26 | AC | 120 ms
84,736 KB |
testcase_27 | AC | 93 ms
73,856 KB |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 h, w, k = mi() s = [input() for _ in range(h)] dp = [[[0] * (k + 1) for _ in range(h + 1)] for _ in range(w + 1)] dp[0][0][k] = 1 for i in range(h): for j in range(w): if s[i][j] == '#': continue if s[i][j] == 'o': for x in range(1, k + 1): if i - 1 >= 0: dp[i][j][x - 1] += dp[i - 1][j][x] if j - 1 >= 0: dp[i][j][x - 1] += dp[i][j - 1][x] dp[i][j][x - 1] %= mod else: for x in range(k + 1): if i - 1 >= 0: dp[i][j][x] += dp[i - 1][j][x] if j - 1 >= 0: dp[i][j][x] += dp[i][j - 1][x] dp[i][j][x] %= mod ans = 0 for i in range(1, k + 1): ans += dp[h - 1][w - 1][i] print(ans % mod)