結果

問題 No.2708 Jewel holder
ユーザー lloyzlloyz
提出日時 2024-05-09 22:13:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-05-09 22:13:40
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 48 ms
53,760 KB
testcase_05 AC 47 ms
53,760 KB
testcase_06 AC 48 ms
53,632 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 49 ms
53,632 KB
testcase_09 AC 47 ms
53,504 KB
testcase_10 AC 47 ms
53,632 KB
testcase_11 AC 49 ms
53,760 KB
testcase_12 AC 49 ms
54,016 KB
testcase_13 AC 48 ms
53,632 KB
testcase_14 AC 48 ms
53,760 KB
testcase_15 AC 49 ms
53,632 KB
testcase_16 AC 48 ms
53,504 KB
testcase_17 AC 75 ms
67,072 KB
testcase_18 AC 49 ms
54,144 KB
testcase_19 AC 49 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
A = [list(input()) for _ in range(h)]

D = [(1, 0), (0, 1)]
Que = deque([(1, 0, 0)])
ans = 0
while Que:
    cc, ci, cj = Que.popleft()
    if ci == h - 1 and cj == w - 1:
        ans += 1
        continue
    for di, dj in D:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if A[ni][nj] == '#':
                continue
            if A[ni][nj] == 'o':
                nc = cc + 1
            else:
                nc = cc - 1
                if nc == -1:
                    continue
            Que.append((nc, ni, nj))
print(ans)
0