結果

問題 No.1714 Tag on Grid
ユーザー tobusakanatobusakana
提出日時 2022-11-20 12:02:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-09-21 12:49:00
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,652 KB
testcase_01 AC 38 ms
52,236 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
53,852 KB
testcase_04 AC 38 ms
53,172 KB
testcase_05 AC 38 ms
52,268 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,948 KB
testcase_08 AC 38 ms
52,004 KB
testcase_09 WA -
testcase_10 AC 38 ms
53,876 KB
testcase_11 AC 37 ms
53,180 KB
testcase_12 AC 38 ms
53,572 KB
testcase_13 AC 38 ms
53,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,852 KB
testcase_19 WA -
testcase_20 AC 37 ms
52,692 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 37 ms
52,832 KB
testcase_25 AC 39 ms
52,156 KB
testcase_26 AC 38 ms
51,944 KB
testcase_27 AC 37 ms
53,096 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