結果

問題 No.1714 Tag on Grid
ユーザー tobusakanatobusakana
提出日時 2022-11-20 12:02:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 1,222 ms
コンパイル使用メモリ 81,612 KB
実行使用メモリ 53,468 KB
最終ジャッジ日時 2023-10-21 11:33:58
合計ジャッジ時間 2,953 ms
ジャッジサーバーID
(参考情報)
judge10 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,468 KB
testcase_01 AC 38 ms
53,468 KB
testcase_02 AC 39 ms
53,468 KB
testcase_03 AC 38 ms
53,468 KB
testcase_04 AC 39 ms
53,468 KB
testcase_05 AC 39 ms
53,468 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,468 KB
testcase_08 AC 40 ms
53,468 KB
testcase_09 WA -
testcase_10 AC 40 ms
53,468 KB
testcase_11 AC 40 ms
53,468 KB
testcase_12 AC 39 ms
53,468 KB
testcase_13 AC 39 ms
53,468 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
53,468 KB
testcase_19 WA -
testcase_20 AC 39 ms
53,468 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
53,468 KB
testcase_25 AC 39 ms
53,468 KB
testcase_26 AC 39 ms
53,468 KB
testcase_27 AC 39 ms
53,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
ni,nj = map(int,input().split())
zi,zj = map(int,input().split())

if abs(ni - zi) + abs(nj - zj) == 1:
    print("Yes")
    exit(0)
    
if not (zi in (1, H) and zj in (1, W)):
    print("No")
    exit(0)
    
if zi == 1:
    xi = 2
else:
    xi = H - 1
    
if zj == 1:
    xj = 2
else:
    xj = W - 1
    
if abs(xi - ni) + abs(xj - nj) == 1:
    print("Yes")
else:
    print("No")
0