結果

問題 No.2928 Gridpath
ユーザー vwxyzvwxyz
提出日時 2024-10-12 15:39:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,828 KB
最終ジャッジ日時 2024-10-12 15:39:26
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,864 KB
testcase_01 AC 38 ms
53,316 KB
testcase_02 AC 164 ms
76,224 KB
testcase_03 AC 38 ms
52,128 KB
testcase_04 AC 38 ms
52,924 KB
testcase_05 AC 70 ms
70,400 KB
testcase_06 AC 108 ms
76,148 KB
testcase_07 AC 44 ms
59,600 KB
testcase_08 AC 38 ms
53,780 KB
testcase_09 AC 114 ms
76,036 KB
testcase_10 AC 55 ms
63,916 KB
testcase_11 AC 38 ms
52,696 KB
testcase_12 AC 37 ms
52,924 KB
testcase_13 AC 37 ms
52,548 KB
testcase_14 AC 37 ms
52,684 KB
testcase_15 AC 132 ms
76,408 KB
testcase_16 AC 136 ms
76,260 KB
testcase_17 AC 122 ms
76,172 KB
testcase_18 AC 148 ms
76,376 KB
testcase_19 AC 188 ms
76,828 KB
testcase_20 AC 38 ms
52,620 KB
testcase_21 AC 155 ms
76,636 KB
testcase_22 AC 167 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
s0,s1=map(int,input().split())
g0,g1=map(int,input().split())
s0-=1;s1-=1
g0-=1;g1-=1
queue=[[(s0,s1)]]
ans=0
while queue:
    route=queue.pop()
    x,y=route[-1]
    if (x,y)==(g0,g1):
        ans+=1
    for dx,dy in ((0,1),(1,0),(0,-1),(-1,0)):
        if 0<=x+dx<H and 0<=y+dy<W and all(abs(xx-(x+dx))+abs(yy-(y+dy))>=2 for xx,yy in route[:-1]):
            queue.append(route+[(x+dx,y+dy)])
print(ans)
0