結果

問題 No.2564 衝突予測
ユーザー ID 21712ID 21712
提出日時 2024-11-11 22:53:00
言語 Go
(1.22.1)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 12,983 ms
コンパイル使用メモリ 223,728 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-11-11 22:53:20
合計ジャッジ時間 20,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 445 ms
6,272 KB
testcase_04 AC 471 ms
6,272 KB
testcase_05 AC 447 ms
6,272 KB
testcase_06 AC 445 ms
6,272 KB
testcase_07 AC 469 ms
6,272 KB
testcase_08 AC 444 ms
6,272 KB
testcase_09 AC 444 ms
6,272 KB
testcase_10 AC 438 ms
6,272 KB
testcase_11 AC 449 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var t int
	Fscan(rd,&t)
	for ;t>0;t-- {
		var x1,y1,x2,y2 int
		var d1,d2 string
		Fscan(rd,&x1,&y1,&d1,&x2,&y2,&d2)
		d:=d1+d2
		var ans bool
		switch {
			case x1==x2&&y1<y2:
			ans=d=="UD"
			case x1==x2&&y1>y2:
			ans=d=="DU"
			case y1==y2&&x1<x2:
			ans=d=="RL"
			case y1==y2&&x1>x2:
			ans=d=="LR"
			case x1<x2&&y1<y2&&x2-x1==y2-y1:
			ans=d=="RD"||d=="UL"
			case x1<x2&&y1>y2&&x2-x1==y1-y2:
			ans=d=="RU"||d=="DL"
			case x1>x2&&y1<y2&&x1-x2==y2-y1:
			ans=d=="UR"||d=="LD"
			case x1>x2&&y1>y2&&x1-x2==y1-y2:
			ans=d=="LU"||d=="DR"
		}
		if ans {
			Println("Yes")
		} else {
			Println("No")
		}
	}
}
0