結果
問題 | No.2564 衝突予測 |
ユーザー | 👑 p-adic |
提出日時 | 2023-12-02 16:18:45 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 3,758 ms |
コンパイル使用メモリ | 182,584 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-26 20:07:21 |
合計ジャッジ時間 | 4,059 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
ll@T,x,y,z,w,s,t,b;char d,e;map<char,ll>X;X['R']=0;X['D']=1;X['L']=2;X['U']=3;rep(T){rd(x,y,d,z,w,e);s=X[d];t=X[e];if(s==t)b=0;else if(abs(s-t)==2)b=1;else if(s%2)b=(y<w)==s/2&&(x<z)==t/2&&abs(x-z)==abs(y-w);else b=(z<x)==s/2&&(w<y)==t/2&&abs(x-z)==abs(y-w);wt(b?"Yes":"No");}