結果

問題 No.2564 衝突予測
ユーザー Motoki saitoMotoki saito
提出日時 2023-12-02 16:05:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,720 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-26 19:48:32
合計ジャッジ時間 10,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    x1, y1, d1 = input().split(" ")
    x1, y1 = map(int, [x1, y1])
    x2, y2, d2 = input().split(" ")
    x2, y2 = map(int, [x2, y2])

    if d1 == "L" and d2 == "R":
        if x2 <= x1 and y1 == y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "R" and d2 == "L":
        if x1 <= x2 and y1 == y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "U" and d2 == "D":
        if y1 <= y2 and x1 == x2:
            print("Yes")
        else:
            print("No")
    elif d1 == "D" and d2 == "U":
        if y2 <= y1 and x1 == x2:
            print("Yes")
        else:
            print("No")
    elif d1 == "R" and d2 == "U":
        if x2 - x1 == y1 - y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "L" and d2 == "U":
        if x1 - x2 == y1 - y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "R" and d2 == "D":
        if x2 - x1 == y2 - y1:
            print("Yes")
        else:
            print("No")
    elif d1 == "L" and d2 == "D":
        if x1 - x2 == y2 - y1:
            print("Yes")
        else:
            print("No")
    elif d1 == "U" and d2 == "R":
        if x1 - x2 == y2 - y1:
            print("Yes")
        else:
            print("No")
    elif d1 == "U" and d2 == "L":
        if x2 - x1 == y2 - y1:
            print("Yes")
        else:
            print("No")
    elif d1 == "D" and d2 == "R":
        if x1 - x2 == y1 - y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "D" and d2 == "L":
        if x2 - x1 == y1 - y2:
            print("Yes")
        else:
            print("No")
0