結果
| 問題 | No.3180 angles sum |
| コンテスト | |
| ユーザー |
applejam
|
| 提出日時 | 2025-11-26 20:41:25 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 722 ms / 2,000 ms |
| コード長 | 1,666 bytes |
| コンパイル時間 | 5,596 ms |
| コンパイル使用メモリ | 334,968 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-11-26 20:41:42 |
| 合計ジャッジ時間 | 16,114 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
#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;
}
if(ax*bx == ay*by){
cout << (cx == 0 ? "Yes" : "No") << endl;
return ;
}
if(cy == 0 && cx < 0){
cout << "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;
}
applejam