結果

問題 No.2430 Damage Zone
ユーザー miho-4miho-4
提出日時 2023-08-18 22:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 187,700 KB
最終ジャッジ日時 2024-11-28 08:28:38
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 489 ms
137,520 KB
testcase_01 AC 185 ms
85,244 KB
testcase_02 AC 814 ms
187,184 KB
testcase_03 AC 56 ms
65,536 KB
testcase_04 AC 72 ms
74,240 KB
testcase_05 AC 82 ms
77,568 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 44 ms
53,760 KB
testcase_11 AC 98 ms
77,944 KB
testcase_12 AC 93 ms
77,768 KB
testcase_13 AC 44 ms
53,760 KB
testcase_14 AC 787 ms
185,964 KB
testcase_15 AC 816 ms
187,700 KB
testcase_16 AC 766 ms
185,448 KB
testcase_17 AC 404 ms
120,284 KB
testcase_18 AC 155 ms
84,620 KB
testcase_19 AC 47 ms
58,880 KB
testcase_20 AC 369 ms
113,132 KB
testcase_21 AC 115 ms
79,300 KB
testcase_22 AC 110 ms
78,464 KB
testcase_23 AC 110 ms
78,020 KB
testcase_24 AC 110 ms
78,552 KB
testcase_25 AC 282 ms
102,808 KB
testcase_26 AC 284 ms
102,472 KB
testcase_27 AC 266 ms
98,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
from collections import deque,defaultdict
H,W,K=map(int,input().split())
L=[input() for _ in range(H)]
flag=[[1]*W for _ in range(H)]
D=defaultdict(set)#key=(h,w,d)
D[(0,0)]={0}
D2=defaultdict(int)
D2[(0,0,0)]=1
ans=0
q=deque([(0,0)])
while q:
  h,w=q.popleft()
  for dh,dw in [(1,0),(0,1)]:
    if h+dh<H and w+dw<W and L[h+dh][w+dw]!="#":
      if flag[h+dh][w+dw]:
        q.append((h+dh,w+dw))
        flag[h+dh][w+dw]=0
      dd=0
      if L[h+dh][w+dw]=="o":dd=1
      for d in D[(h,w)]:
        if d+dd<K:
          D[(h+dh,w+dw)].add(d+dd)
          D2[((h+dh,w+dw,d+dd))]+=D2[(h,w,d)]
          D2[((h+dh,w+dw,d+dd))]%=mod
ans=0
for d in D[(H-1,W-1)]:
  ans+=D2[(H-1,W-1,d)]
  ans%=mod
print(ans)

  
0