結果

問題 No.323 yuki国
ユーザー titiatitia
提出日時 2023-07-26 11:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,715 ms / 5,000 ms
コード長 794 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 305,424 KB
最終ジャッジ日時 2024-10-02 22:42:36
合計ジャッジ時間 15,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,824 KB
testcase_01 AC 54 ms
65,920 KB
testcase_02 AC 46 ms
62,464 KB
testcase_03 AC 85 ms
78,592 KB
testcase_04 AC 60 ms
68,736 KB
testcase_05 AC 79 ms
77,824 KB
testcase_06 AC 60 ms
68,352 KB
testcase_07 AC 46 ms
63,104 KB
testcase_08 AC 592 ms
125,824 KB
testcase_09 AC 531 ms
125,952 KB
testcase_10 AC 42 ms
60,544 KB
testcase_11 AC 51 ms
64,384 KB
testcase_12 AC 51 ms
64,000 KB
testcase_13 AC 443 ms
128,768 KB
testcase_14 AC 419 ms
128,256 KB
testcase_15 AC 308 ms
125,568 KB
testcase_16 AC 523 ms
125,440 KB
testcase_17 AC 803 ms
239,236 KB
testcase_18 AC 361 ms
139,376 KB
testcase_19 AC 494 ms
165,988 KB
testcase_20 AC 1,388 ms
301,940 KB
testcase_21 AC 1,367 ms
305,424 KB
testcase_22 AC 1,681 ms
301,272 KB
testcase_23 AC 1,715 ms
301,052 KB
testcase_24 AC 316 ms
125,312 KB
testcase_25 AC 355 ms
125,184 KB
testcase_26 AC 538 ms
125,440 KB
testcase_27 AC 466 ms
125,696 KB
testcase_28 AC 508 ms
125,440 KB
testcase_29 AC 504 ms
125,056 KB
testcase_30 AC 50 ms
62,080 KB
testcase_31 AC 54 ms
66,816 KB
testcase_32 AC 65 ms
70,912 KB
testcase_33 AC 59 ms
66,048 KB
testcase_34 AC 84 ms
77,824 KB
testcase_35 AC 41 ms
60,800 KB
testcase_36 AC 77 ms
76,928 KB
testcase_37 AC 63 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())

A,x,y=map(int,input().split())
B,z,w=map(int,input().split())

MAP=[input().strip() for i in range(H)]

OK=[[[0]*W for i in range(H)] for j in range(2000)]

OK[A][x][y]=1

Q=[(A,x,y)]

while Q:
    now,x,y=Q.pop()

    for tx,ty in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
        if 0<=tx<H and 0<=ty<W:
            if MAP[tx][ty]==".":
                if now-1>0 and OK[now-1][tx][ty]==0:
                    OK[now-1][tx][ty]=1
                    Q.append((now-1,tx,ty))
            else:
                if now+1<2000 and OK[now+1][tx][ty]==0:
                    OK[now+1][tx][ty]=1
                    Q.append((now+1,tx,ty))

if OK[B][z][w]==1:
    print("Yes")
else:
    print("No")
                
                    

0