結果
問題 | No.2564 衝突予測 |
ユーザー | Lucagon |
提出日時 | 2023-12-02 15:43:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 466 ms / 2,000 ms |
コード長 | 1,009 bytes |
コンパイル時間 | 408 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,620 KB |
最終ジャッジ日時 | 2024-09-26 19:10:48 |
合計ジャッジ時間 | 5,615 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | AC | 40 ms
52,224 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 410 ms
76,892 KB |
testcase_04 | AC | 408 ms
77,332 KB |
testcase_05 | AC | 406 ms
77,164 KB |
testcase_06 | AC | 402 ms
77,296 KB |
testcase_07 | AC | 410 ms
77,364 KB |
testcase_08 | AC | 407 ms
77,104 KB |
testcase_09 | AC | 460 ms
77,620 KB |
testcase_10 | AC | 466 ms
76,988 KB |
testcase_11 | AC | 449 ms
77,108 KB |
ソースコード
t = int(input()) for i in range(t): a = list(input().split()) b = list(input().split()) x1,y1,d1 = int(a[0]),int(a[1]),a[2] x2,y2,d2 = int(b[0]),int(b[1]),b[2] flag = False if x1 == x2: if ((y1 > y2 and d1 == "D" and d2 == "U") or (y1 < y2 and d1 == "U" and d2 == "D")): flag = True if y1 == y2: if ((x1 > x2 and d1 == "L" and d2 == "R") or (x1 < x2 and d1 == "R" and d2 == "L")): flag = True if abs(x1 - x2) == abs(y1 - y2): if x2 < x1: if (y1 > y2 and ((d1 == "L" and d2 == "U") or (d1 == "D" and d2 == "R")) or y1 < y2 and ((d1 == "L" and d2 == "D") or (d1 == "U" and d2 == "R"))): flag = True if x1 < x2: if (y1 > y2 and ((d1 == "R" and d2 == "U") or (d1 == "D" and d2 == "L")) or y1 < y2 and ((d1 == "R" and d2 == "D") or (d1 == "U" and d2 == "L"))): flag = True print("Yes" if flag else "No")