結果

問題 No.3180 angles sum
ユーザー t98slider
提出日時 2025-06-15 00:20:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 195,644 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-06-15 00:20:15
合計ジャッジ時間 5,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

bool solve(){
    ll x1, y1, x2, y2, x3, y3;
    cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;
    if(x1 * y2 < x2 * y1){
        swap(x1, x2);
        swap(y1, y2);
    }
    complex<long double> p1(x1, y1), p3(x3, y3);
    p3 /= p1;
    return abs(x2 * p3.imag() - p3.real() * y2) <= 1e-10;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;
    cin >> T;
    while(T--) cout << (solve() ? "Yes" : "No") << '\n';
}
0