結果
問題 | No.2564 衝突予測 |
ユーザー | Nullz |
提出日時 | 2023-12-02 16:26:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,003 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 79,040 KB |
最終ジャッジ日時 | 2024-09-26 20:18:06 |
合計ジャッジ時間 | 5,343 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,840 KB |
testcase_01 | AC | 36 ms
51,712 KB |
testcase_02 | AC | 37 ms
52,352 KB |
testcase_03 | AC | 451 ms
78,488 KB |
testcase_04 | AC | 426 ms
78,476 KB |
testcase_05 | AC | 426 ms
77,272 KB |
testcase_06 | AC | 435 ms
79,040 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
c = {'R': (1, 0), 'L': (-1, 0), 'U': (0, 1), 'D': (0, -1)} for _ in range(int(input())): x1, y1, d1 = input().split() x2, y2, d2 = input().split() x1, x2, y1, y2 = int(x1), int(x2), int(y1), int(y2) if d1 == 'U' and d2 == 'D' and x1 == x2 and y1 < y2: print('Yes') elif d1 == 'D' and d2 == 'U' and x1 == x2 and y1 > y2: print('Yes') elif d1 == 'R' and d2 == 'L' and y1 == y2 and x1 < x2: print('Yes') elif d1 == 'L' and d2 == 'R' and y1 == y2 and x1 > x2: print('Yes') elif ((d1 == 'U' and d2 == 'R') or (d1 == 'L' and d2 == 'D')) and x1 - x2 == y2 - y1: print('Yes') elif ((d1 == 'U' and d2 == 'L') or (d1 == 'R' and d2 == 'D')) and x2 - x1 == y2 - y1: print('Yes') elif ((d1 == 'D' and d2 == 'R') or (d1 == 'L' and d2 == 'U')) and x1 - x2 == y1 - y2: print('Yes') elif ((d1 == 'D' and d2 == 'L') or (d1 == 'R' and d2 == 'U')) and x2 - x1 == y1 - y2: print('Yes') else: print('No')