結果

問題 No.2564 衝突予測
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 18:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2024-09-06 18:05:14
合計ジャッジ時間 5,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,840 KB
testcase_01 AC 36 ms
52,740 KB
testcase_02 AC 38 ms
53,912 KB
testcase_03 AC 383 ms
77,572 KB
testcase_04 AC 388 ms
77,516 KB
testcase_05 AC 387 ms
77,368 KB
testcase_06 AC 396 ms
77,448 KB
testcase_07 AC 393 ms
77,552 KB
testcase_08 AC 384 ms
77,860 KB
testcase_09 AC 434 ms
77,536 KB
testcase_10 AC 432 ms
77,288 KB
testcase_11 AC 430 ms
77,572 KB
権限があれば一括ダウンロードができます

ソースコード

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=="D" and d2=="R"
			f|=d1=="L" and d2=="U"
	print(["No","Yes"][f])
0