結果

問題 No.2708 Jewel holder
ユーザー ButterflvButterflv
提出日時 2024-04-18 09:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 1,071 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-10-10 02:44:10
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,672 KB
testcase_01 AC 47 ms
60,376 KB
testcase_02 AC 47 ms
60,956 KB
testcase_03 AC 42 ms
59,648 KB
testcase_04 AC 43 ms
59,532 KB
testcase_05 AC 38 ms
53,312 KB
testcase_06 AC 39 ms
52,936 KB
testcase_07 AC 52 ms
63,484 KB
testcase_08 AC 66 ms
67,172 KB
testcase_09 AC 59 ms
67,384 KB
testcase_10 AC 61 ms
66,992 KB
testcase_11 AC 53 ms
63,956 KB
testcase_12 AC 52 ms
63,140 KB
testcase_13 AC 62 ms
68,224 KB
testcase_14 AC 59 ms
65,256 KB
testcase_15 AC 59 ms
66,712 KB
testcase_16 AC 56 ms
64,620 KB
testcase_17 AC 62 ms
68,176 KB
testcase_18 AC 61 ms
68,208 KB
testcase_19 AC 62 ms
68,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W=map(int, input().split())
S=list(input() for i in range(H))

# dp[h][w][n] で h行w列で宝石をn個持っている場合の数
dp=[[[0 for k in range(109)] for j in range(W)] for i in range(H)]

dp[0][0][1]=1
ans=0
for h in range(H):
  for w in range(W):
    for n in range(109):
      for dh, dw in ((1,0),(0,1)):
        nh, nw=h+dh, w+dw
        if (nh<H and nw<W)==False: continue
        if S[nh][nw]=="o" and n+1<len(dp[nh][nw]):
          dp[nh][nw][n+1]+=dp[h][w][n]
        elif S[nh][nw]=="x":
          if n-1>=0:
          	dp[nh][nw][n-1]+=dp[h][w][n]

for n in range(len(dp[0][0])):
  ans+=dp[H-1][W-1][n]
print(ans)

# print(dp)
0