結果

問題 No.2564 衝突予測
ユーザー sA_3sA_3
提出日時 2023-12-02 16:02:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 1,769 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 78,236 KB
最終ジャッジ日時 2024-09-26 19:43:29
合計ジャッジ時間 5,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 391 ms
77,532 KB
testcase_04 AC 397 ms
77,224 KB
testcase_05 AC 400 ms
77,656 KB
testcase_06 AC 405 ms
77,136 KB
testcase_07 AC 404 ms
77,756 KB
testcase_08 AC 394 ms
77,136 KB
testcase_09 AC 423 ms
78,236 KB
testcase_10 AC 422 ms
78,104 KB
testcase_11 AC 432 ms
78,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    x1,y1,d1 = input().split()
    x2,y2,d2 = input().split()
    x1,x2,y1,y2 = int(x1),int(x2),int(y1),int(y2)
    ans = 'No'
    if d1 == d2:
        ans = 'No'
    # 向かい合う
    elif x1 == x2:
        if (d1 == 'U' and d2 == 'D') and y1 < y2:
            ans = 'Yes'
        elif (d1 == 'D' and d2 == 'U') and y1 > y2:
            ans = 'Yes'
        else:
            ans = 'No'
    elif y1 == y2:
        if (d1 == 'L' and d2 == 'R') and x1 > x2:
            ans = 'Yes'
        elif (d1 == 'R' and d2 == 'L') and x1 < x2:
            ans = 'Yes'
        else:
            ans = 'No'
    
    else: # 向かい合わない UL UR DL DR
        if (d1 == 'U' and d2 == 'L') or (d1 == 'L' and d2 == 'U'):
            if d1 == 'L':
                x1,y1,x2,y2 = x2,y2,x1,y1
            
            if x2-x1 == y2-y1 > 0:
                ans = 'Yes'
            else:
                ans = 'No'
        
        elif (d1 == 'U' and d2 == 'R') or (d1 == 'R' and d2 == 'U'):
            if d1 == 'R':
                x1,y1,x2,y2 = x2,y2,x1,y1
            
            if x1-x2 == y2-y1 > 0:
                ans = 'Yes'
            else:
                ans = 'No'
        
        elif (d1 == 'D' and d2 == 'L') or (d1 == 'L' and d2 == 'D'):
            if d1 == 'L':
                x1,y1,x2,y2 = x2,y2,x1,y1
            
            if x2-x1 == y1-y2 > 0:
                ans = 'Yes'
            else:
                ans = 'No'
            
        elif (d1 == 'D' and d2 == 'R') or (d1 == 'R' and d2 == 'D'):
            if d1 == 'R':
                x1,y1,x2,y2 = x2,y2,x1,y1
            
            if x1-x2 == y1-y2 > 0:
                ans = 'Yes'
            else:
                ans = 'No'
        
    print(ans)
0