結果

問題 No.2564 衝突予測
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 18:04:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 77,768 KB
最終ジャッジ日時 2024-09-06 18:04:20
合計ジャッジ時間 5,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,412 KB
testcase_01 AC 34 ms
53,312 KB
testcase_02 AC 35 ms
52,812 KB
testcase_03 AC 374 ms
77,084 KB
testcase_04 AC 406 ms
77,100 KB
testcase_05 AC 364 ms
77,524 KB
testcase_06 AC 361 ms
77,156 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	x1,y1,d1=input().split()
	x1=int(x1)
	y1=int(y1)
	x2,y2,d2=input().split()
	x2=int(x2)
	y2=int(y2)
	f=0
	if x1==x2:
		if y1<y2:
			f|=d1=="U" and d2=="D"
		if y1>y2:
			f|=d1=="D" and d2=="U"
	elif y1==y2:
		if x1<x2:
			f|=d1=="R" and d2=="L"
		if x1>x2:
			f|=d1=="L" and d2=="R"
	elif abs(x1-x2)==abs(y1-y2):
		if x1<x2 and y1<y2:
			f|=d1=="U" and d2=="L"
			f|=d1=="R" and d2=="D"
		if x1<x2 and y1>y2:
			f|=d1=="D" and d2=="L"
			f|=d1=="R" and d2=="U"
		if x1>x2 and y1<y2:
			f|=d1=="U" and d2=="R"
			f|=d1=="L" and d2=="D"
		if x1>x2 and y1>y2:
			f|=d1=="U" and d2=="R"
			f|=d1=="L" and d2=="U"
	print(["No","Yes"][f])
0