結果

問題 No.2564 衝突予測
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-17 01:07:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 199,980 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-17 01:07:11
合計ジャッジ時間 6,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 188 ms
6,816 KB
testcase_04 AC 186 ms
6,816 KB
testcase_05 AC 186 ms
6,816 KB
testcase_06 AC 190 ms
6,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void NO(){cout << "No" << endl;}
void YES(){cout << "Yes" << endl;}

void solve(){
    char c1, c2;
    int x1, y1, x2, y2;
    cin >> x1 >> y1 >> c1 >> x2 >> y2 >> c2;
    if (c1 > c2){
        swap(x1, x2);
        swap(y1, y2);
        swap(c1, c2);
    }
    if (c1 == 'D' && c2 == 'U' && x1 == x2 && y1 > y2) YES();
    else if (c1 == 'L' && c2 == 'R' && y1 == y2 && x1 > x2) YES();
    else if (c1 == 'D' && c2 == 'R' && y1-y2 == x1-x2) YES();
    else if (c1 == 'D' && c2 == 'L' && y1-y2 == x2-x1) YES();
    else if (c1 == 'L' && c2 == 'U' && y1-y2 == x1-x2) YES();
    else if (c1 == 'R' && c2 == 'U' && y1-y2 == x2-x1) YES();
    else NO();
}

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int T;
    cin >> T;
    while(T--){
        solve();
    }

    return 0;
}
0