結果
問題 | No.2708 Jewel holder |
ユーザー | rlangevin |
提出日時 | 2024-04-01 21:41:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 782 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 63,352 KB |
最終ジャッジ日時 | 2024-09-30 22:16:11 |
合計ジャッジ時間 | 1,820 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,616 KB |
testcase_01 | AC | 36 ms
53,540 KB |
testcase_02 | AC | 36 ms
52,944 KB |
testcase_03 | AC | 36 ms
53,756 KB |
testcase_04 | AC | 37 ms
53,184 KB |
testcase_05 | AC | 37 ms
53,336 KB |
testcase_06 | AC | 37 ms
53,384 KB |
testcase_07 | AC | 43 ms
60,848 KB |
testcase_08 | AC | 46 ms
62,560 KB |
testcase_09 | AC | 44 ms
62,572 KB |
testcase_10 | AC | 46 ms
63,004 KB |
testcase_11 | AC | 46 ms
62,392 KB |
testcase_12 | AC | 39 ms
56,576 KB |
testcase_13 | AC | 45 ms
62,120 KB |
testcase_14 | AC | 47 ms
63,304 KB |
testcase_15 | AC | 48 ms
62,228 KB |
testcase_16 | AC | 49 ms
62,220 KB |
testcase_17 | AC | 49 ms
62,808 KB |
testcase_18 | AC | 49 ms
62,804 KB |
testcase_19 | AC | 53 ms
63,352 KB |
ソースコード
H, W = map(int, input().split()) M = 105 A = [] for i in range(H): A.append(list(input())) dp = [[[0] * M for _ in range(W)] for _ in range(H)] dp[0][0][1] = 1 for i in range(H): for j in range(W): if i == j == 0: continue if A[i][j] == "#": continue for m in range(M - 1): if i: if A[i][j] == "o" and m: dp[i][j][m] += dp[i - 1][j][m - 1] if A[i][j] == "x": dp[i][j][m] += dp[i - 1][j][m + 1] if j: if A[i][j] == "o" and m: dp[i][j][m] += dp[i][j - 1][m - 1] if A[i][j] == "x": dp[i][j][m] += dp[i][j - 1][m + 1] print(sum(dp[-1][-1]))