結果

問題 No.323 yuki国
ユーザー rlangevinrlangevin
提出日時 2023-09-29 08:59:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 387,140 KB
最終ジャッジ日時 2024-07-22 03:36:23
合計ジャッジ時間 34,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,972 KB
testcase_01 AC 42 ms
54,056 KB
testcase_02 AC 84 ms
77,588 KB
testcase_03 AC 48 ms
60,572 KB
testcase_04 AC 44 ms
53,928 KB
testcase_05 AC 82 ms
78,448 KB
testcase_06 WA -
testcase_07 AC 43 ms
54,304 KB
testcase_08 AC 2,299 ms
387,072 KB
testcase_09 AC 2,130 ms
338,424 KB
testcase_10 AC 42 ms
54,540 KB
testcase_11 AC 61 ms
67,804 KB
testcase_12 AC 60 ms
67,636 KB
testcase_13 AC 1,975 ms
330,224 KB
testcase_14 AC 2,356 ms
386,860 KB
testcase_15 AC 1,665 ms
290,700 KB
testcase_16 AC 2,368 ms
387,020 KB
testcase_17 AC 2,064 ms
322,576 KB
testcase_18 AC 86 ms
78,416 KB
testcase_19 AC 1,328 ms
289,964 KB
testcase_20 AC 105 ms
81,800 KB
testcase_21 AC 2,728 ms
387,080 KB
testcase_22 AC 606 ms
151,032 KB
testcase_23 AC 2,656 ms
386,852 KB
testcase_24 AC 219 ms
97,492 KB
testcase_25 AC 1,871 ms
322,696 KB
testcase_26 AC 204 ms
94,716 KB
testcase_27 AC 2,373 ms
387,140 KB
testcase_28 AC 2,257 ms
330,452 KB
testcase_29 AC 2,293 ms
333,352 KB
testcase_30 AC 42 ms
55,352 KB
testcase_31 AC 68 ms
71,732 KB
testcase_32 AC 64 ms
73,096 KB
testcase_33 AC 60 ms
69,188 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 65 ms
72,196 KB
testcase_37 AC 42 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

H, W = map(int, input().split())
A, sx, sy = map(int, input().split())
B, gx, gy = map(int, input().split())
G = []
for i in range(H):
    G.append(list(input()))

Q = deque()
Q.append((sx, sy, A))
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
M = 1200
S = set()
S.add((sx, sy, A))
while Q:
    px, py, c = Q.popleft()
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > H - 1 or y < 0 or y > W - 1:
            continue
        if G[x][y] == "*":
            nc = c + 1  
        else:
            nc = c - 1
        if nc < 0 or nc >= M:
            continue
        if (x, y, nc) in S:
            continue
        S.add((x, y, nc))
        Q.append((x, y, nc))
        if B == nc and x == gx and y == gy:
            print("Yes")
            exit()

print("No")
0