結果

問題 No.2708 Jewel holder
ユーザー 👑 KA37RIKA37RI
提出日時 2024-03-31 14:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 63,468 KB
最終ジャッジ日時 2024-09-30 19:05:44
合計ジャッジ時間 1,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,676 KB
testcase_01 AC 39 ms
52,800 KB
testcase_02 AC 38 ms
52,856 KB
testcase_03 AC 38 ms
52,652 KB
testcase_04 AC 38 ms
53,424 KB
testcase_05 AC 37 ms
53,140 KB
testcase_06 AC 39 ms
53,148 KB
testcase_07 AC 39 ms
53,260 KB
testcase_08 AC 39 ms
53,424 KB
testcase_09 AC 37 ms
53,136 KB
testcase_10 AC 36 ms
53,252 KB
testcase_11 AC 37 ms
52,740 KB
testcase_12 AC 35 ms
53,972 KB
testcase_13 AC 39 ms
58,876 KB
testcase_14 AC 38 ms
53,456 KB
testcase_15 AC 41 ms
59,316 KB
testcase_16 AC 37 ms
53,004 KB
testcase_17 AC 48 ms
63,192 KB
testcase_18 AC 48 ms
61,788 KB
testcase_19 AC 47 ms
63,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = [int(x) for x in input().split()]
a = [input() for _ in range(h)]

cnt = [[[0] * 30 for _ in range(w)] for _ in range(h)]
cnt[0][0][1] = 1

for i in range(h):
	for j in range(w):
		for k in range(25):
			if i < h - 1:
				if a[i+1][j] == "o":
					cnt[i+1][j][k+1] += cnt[i][j][k]
				elif a[i+1][j] == "x" and k > 0:
					cnt[i+1][j][k-1] += cnt[i][j][k]
					
			if j < w - 1:
				if a[i][j+1] == "o":
					cnt[i][j+1][k+1] += cnt[i][j][k]
				elif a[i][j+1] == "x" and k > 0:
					cnt[i][j+1][k-1] += cnt[i][j][k]
					
print(sum(cnt[h-1][w-1]))
0