結果

問題 No.8063 幅優先探索
ユーザー tamatotamato
提出日時 2020-04-01 21:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-06-27 10:16:57
合計ジャッジ時間 1,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    R, C = map(int, input().split())
    sx, sy = map(int, input().split())
    gx, gy = map(int, input().split())
    print(abs(sx-gx) + abs(sy-gy))


if __name__ == '__main__':
    main()
0