結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,320 KB
testcase_01 AC 38 ms
54,280 KB
testcase_02 AC 40 ms
54,840 KB
testcase_03 AC 41 ms
53,792 KB
testcase_04 AC 41 ms
54,788 KB
testcase_05 AC 39 ms
55,044 KB
testcase_06 AC 37 ms
54,316 KB
testcase_07 AC 38 ms
55,656 KB
testcase_08 AC 40 ms
54,700 KB
testcase_09 AC 41 ms
55,760 KB
testcase_10 AC 40 ms
54,904 KB
testcase_11 AC 39 ms
55,196 KB
testcase_12 AC 38 ms
55,028 KB
testcase_13 AC 40 ms
54,752 KB
testcase_14 AC 39 ms
55,416 KB
testcase_15 AC 41 ms
54,028 KB
testcase_16 AC 39 ms
55,248 KB
testcase_17 AC 59 ms
69,204 KB
testcase_18 AC 40 ms
54,556 KB
testcase_19 AC 41 ms
54,300 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