結果

問題 No.2564 衝突予測
ユーザー detteiuudetteiuu
提出日時 2024-11-28 23:16:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 1,863 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 77,792 KB
最終ジャッジ日時 2024-11-28 23:17:05
合計ジャッジ時間 7,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,080 KB
testcase_03 AC 500 ms
77,672 KB
testcase_04 AC 480 ms
77,792 KB
testcase_05 AC 472 ms
77,792 KB
testcase_06 AC 495 ms
77,688 KB
testcase_07 AC 485 ms
77,148 KB
testcase_08 AC 497 ms
77,668 KB
testcase_09 AC 486 ms
77,728 KB
testcase_10 AC 522 ms
77,724 KB
testcase_11 AC 482 ms
77,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    x1, y1, d1 = input().split()
    x1, y1 = int(x1), int(y1)
    x2, y2, d2 = input().split()
    x2, y2 = int(x2), int(y2)
    if d1 == d2:
        print("No")
        continue
    if d1 == "D" and d2 == "U":
        if x1 == x2 and y2 < y1:
            print("Yes")
        else:
            print("No")
    elif d1 == "U" and d2 == "D":
        if x1 == x2 and y1 < y2:
            print("Yes")
        else:
            print("No")
    elif d1 == "R" and d2 == "L":
        if y1 == y2 and x1 < x2:
            print("Yes")
        else:
            print("No")
    elif d1 == "L" and d2 == "R":
        if y1 == y2 and x2 < x1:
            print("Yes")
        else:
            print("No")
    else:
        if d1 == "L" or d1 == "R":
            x1, x2 = x2, x1
            y1, y2 = y2, y1
            d1, d2 = d2, d1
        if d1 == "U":
            if y1 >= y2:
                print("No")
                continue
            if d2 == "R":
                time = y2-y1
                time2 = x1-x2
                if time == time2:
                    print("Yes")
                else:
                    print("No")
            else:
                time = y2-y1
                time2 = x2-x1
                if time == time2:
                    print("Yes")
                else:
                    print("No")
        else:
            if y1 <= y2:
                print("No")
                continue
            if d2 == "R":
                time = y1-y2
                time2 = x1-x2
                if time == time2:
                    print("Yes")
                else:
                    print("No")
            else:
                time = y1-y2
                time2 = x2-x1
                if time == time2:
                    print("Yes")
                else:
                    print("No")
0