結果
問題 | No.2564 衝突予測 |
ユーザー | tkykwtnb |
提出日時 | 2024-03-30 18:17:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 999 ms / 2,000 ms |
コード長 | 926 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-30 17:38:48 |
合計ジャッジ時間 | 11,599 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,880 KB |
testcase_03 | AC | 978 ms
10,880 KB |
testcase_04 | AC | 966 ms
10,624 KB |
testcase_05 | AC | 920 ms
10,752 KB |
testcase_06 | AC | 932 ms
10,752 KB |
testcase_07 | AC | 932 ms
10,880 KB |
testcase_08 | AC | 999 ms
10,752 KB |
testcase_09 | AC | 921 ms
10,752 KB |
testcase_10 | AC | 963 ms
10,752 KB |
testcase_11 | AC | 943 ms
10,880 KB |
ソースコード
T=int(input()) for _ in range(T): x1,y1,d1=input().split() x2,y2,d2=input().split() x1,y1=int(x1),int(y1) x2,y2=int(x2),int(y2) x2-=x1;y2-=y1 x1-=x1;y1-=y1 if x2<0: x2*=-1 if d1=="R":d1="L" elif d1=="L":d1="R" if d2=="R":d2="L" elif d2=="L":d2="R" if y2<0: y2*=-1 if d1=="U":d1="D" elif d1=="D":d1="U" if d2=="U":d2="D" elif d2=="D":d2="U" if d1==d2 or d1=="L" or d1=="D":print("No") elif d1=="U": if d2=="D": if x1==x2:print("Yes") else:print("No") elif d2=="L": if x2==y2:print("Yes") else:print("No") else:print("No") elif d1=="R": if d2=="L": if y1==y2:print("Yes") else:print("No") elif d2=="D": if x2==y2:print("Yes") else:print("No") else:print("No")