結果
問題 | No.2564 衝突予測 |
ユーザー | mymelochan |
提出日時 | 2023-12-02 15:38:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,007 bytes |
コンパイル時間 | 376 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 78,976 KB |
最終ジャッジ日時 | 2024-09-26 19:02:34 |
合計ジャッジ時間 | 5,827 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
55,168 KB |
testcase_01 | AC | 52 ms
54,656 KB |
testcase_02 | AC | 51 ms
54,656 KB |
testcase_03 | AC | 429 ms
77,952 KB |
testcase_04 | AC | 432 ms
77,544 KB |
testcase_05 | AC | 429 ms
78,148 KB |
testcase_06 | AC | 422 ms
77,800 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
############################################################# import sys sys.setrecursionlimit(10**7) from heapq import heappop,heappush from collections import deque,defaultdict,Counter from bisect import bisect_left, bisect_right from itertools import product,combinations,permutations from math import sin,cos #from math import isqrt #DO NOT USE PyPy ipt = sys.stdin.readline iin = lambda :int(ipt()) lmin = lambda :list(map(int,ipt().split())) ############################################################# direc = {"U":0,"D":2,"R":1,"L":3} for _ in range(iin()): i1 = input().split() i2 = input().split() x1,y1,d1 = int(i1[0]),int(i1[1]),direc[i1[2]] x2,y2,d2 = int(i2[0]),int(i2[1]),direc[i2[2]] if d1 == d2: print("No") continue if d1%2 == 0 and d2%2 == 0: if x1 == x2: if d1 == 0: if y1 < y2: print("Yes") else: print("No") else: if y1 > y2: print("Yes") else: print("No") else: print("No") elif d1%2 == 1 and d2%2 == 1: if y1 == y2: if d1 == 1: if x1 < x2: print("Yes") else: print("No") else: if x1 > x2: print("Yes") else: print("No") else: print("No") else: dx = x1-x2 dy = y1-y2 if dx == dy: if x1 > x2: x1,y1,d1,x2,y2,d2 = x2,y2,d2,x1,y1,d1 if d1^d2 == 3: print("Yes") else: print("No") elif dx == -dy: if x1 > x2: x1,y1,d1,x2,y2,d2 = x2,y2,d2,x1,y1,d1 if d1^d2 == 1: print("Yes") else: print("No") else: print("No")