結果

問題 No.2564 衝突予測
ユーザー loop0919loop0919
提出日時 2023-11-14 19:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,788 KB
最終ジャッジ日時 2024-09-26 08:03:54
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 433 ms
77,056 KB
testcase_04 AC 426 ms
77,312 KB
testcase_05 AC 423 ms
77,312 KB
testcase_06 AC 431 ms
77,632 KB
testcase_07 AC 425 ms
77,440 KB
testcase_08 AC 434 ms
77,788 KB
testcase_09 AC 442 ms
77,212 KB
testcase_10 AC 436 ms
77,468 KB
testcase_11 AC 442 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rotate = ["R", "U", "L", "D"]

def solve():
    x_1, y_1, d_1 = input().split()
    x_1 = int(x_1); y_1 = int(y_1)
    x_2, y_2, d_2 = input().split()
    x_2 = int(x_2); y_2 = int(y_2)
    
    d_2 = rotate[(rotate.index(d_2) - rotate.index(d_1)) % 4]
    for _ in range(rotate.index(d_1)):
        x_1, y_1 = y_1, -x_1
        x_2, y_2 = y_2, -x_2
    
    if x_1 > x_2:
        print("No")
        return
    
    if d_2 == "R":
        print("No")
        
    elif d_2 == "U":
        if x_2 - x_1 == y_1 - y_2:
            print("Yes")
        else:
            print("No")
            
    elif d_2 == "L":
        if y_1 == y_2:
            print("Yes")
        else:
            print("No")
            
    elif d_2 == "D":
        if x_2 - x_1 == y_2 - y_1:
            print("Yes")
        else:
            print("No")
            


T = int(input())
for _ in range(T):
    solve()
0