結果

問題 No.3180 angles sum
コンテスト
ユーザー applejam
提出日時 2025-11-26 20:30:29
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,489 bytes
コンパイル時間 5,423 ms
コンパイル使用メモリ 334,884 KB
実行使用メモリ 7,852 KB
最終ジャッジ日時 2025-11-26 20:30:48
合計ジャッジ時間 17,565 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vvvll = vector<vvll>;
using vmi = vector<mint>;
using vvmi = vector<vmi>;
using vvvmi = vector<vvmi>;
#define all(a) (a).begin(), (a).end()
#define rep2(i, m, n) for (int i = (m); i < (n); ++i)
#define rep(i, n) rep2(i, 0, n)
#define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i)
#define drep(i, n) drep2(i, n, 0)

void solve(){
    ll ax, ay, bx, by, cx, cy; cin >> ax >> ay >> bx >> by >> cx >> cy;
    if(ax == 0 && bx == 0){
        cout << ((cy == 0 && cx < 0) ? "Yes" : "No") << endl;
        return;
    }
    
    if(bx == 0){
        swap(ax, bx); swap(ay, by);
    }
    if(ax == 0){
        if(by == 0){
            cout << (cx == 0 ? "Yes" : "No") << endl;
        }else{
            if(cx == 0){
                cout << "No" << endl;
            }else{
                cout << (cx*bx + cy*by == 0 ? "Yes" : "No") << endl;
            }
        }
        return;
    }
    if(cx == 0){
        cout << (ax*bx == ay*by ? "Yes" : "No") << endl;
        return;
    }
    cout << ((cy*(ax*bx - ay*by) == cx*(ay*bx + ax*by)) ? "Yes" : "No") << endl;
}

int main(){

    int t; cin >> t;
    while(t--)solve();
    return 0;
}
0