結果

問題 No.2564 衝突予測
ユーザー torippytorippy
提出日時 2023-12-02 15:40:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 1,527 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,656 KB
最終ジャッジ日時 2024-09-26 19:07:14
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 566 ms
79,248 KB
testcase_04 AC 549 ms
79,272 KB
testcase_05 AC 557 ms
79,588 KB
testcase_06 AC 547 ms
79,204 KB
testcase_07 AC 545 ms
79,292 KB
testcase_08 AC 556 ms
79,312 KB
testcase_09 AC 568 ms
79,280 KB
testcase_10 AC 577 ms
79,528 KB
testcase_11 AC 577 ms
79,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

YES = "Yes"
NO = "No"


#d1はR固定
def is_ok(x1, x2, y1, y2, d2):
    if x1 < x2:
        if y1 < y2:
            if d2 == "D":
                if x2-x1 == y2-y1:
                    print(YES)
                else:
                    print(NO)
            else:
                print(NO)
        elif y1 == y2:
            if d2 == "L":
                print(YES)
            else:
                print(NO)
        else:
            if d2 == "U":
                if x2-x1 == y1-y2:
                    print(YES)
                else:
                    print(NO)
            else:
                print(NO)
    else:
        print(NO)

T = int(input())

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

    if d1 == "L":
        x1 *= -1
        x2 *= -1
        d1 = "R"
        if d2 == "L":
            d2 = "R"
        elif d2 == "R":
            d2 = "L"
    elif d1 == "U":
        x1, y1 = y1, -x1
        x2, y2 = y2, -x2
        d1 = "R"
        if d2 == "L":
            d2 = "U"
        elif d2 == "R":
            d2 = "D"
        elif d2 == "U":
            d2 = "R"
        else:
            d2 = "L"
    elif d1 == "D":
        x1, y1 = -y1, x1
        x2, y2 = -y2, x2
        d1 = "R"
        if d2 == "L":
            d2 = "D"
        elif d2 == "R":
            d2 = "U"
        elif d2 == "U":
            d2 = "L"
        else:
            d2 = "R"
    
    is_ok(x1, x2, y1, y2, d2)

        
0