結果

問題 No.8063 幅優先探索
ユーザー takakin
提出日時 2020-04-01 23:03:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 175 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-27 12:29:02
合計ジャッジ時間 1,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
r,c=map(str,input().split())
sy,sx=map(str,input().split())
gy,gx=map(str,input().split())
print(abs(sy-gy)+abs(sx-gx))
0