結果
| 問題 | 
                            No.2515 Similar Triangles
                             | 
                    
| コンテスト | |
| ユーザー | 
                             umezo
                         | 
                    
| 提出日時 | 2023-10-27 22:18:17 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 5 ms / 2,000 ms | 
| コード長 | 392 bytes | 
| コンパイル時間 | 1,997 ms | 
| コンパイル使用メモリ | 194,248 KB | 
| 最終ジャッジ日時 | 2025-02-17 15:13:57 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 7 | 
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
vector<array<double,3>> G[200200];
const double INF=1e9; 
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  vector<int> A(5);
  rep(i,5) cin>>A[i];
  if(A[1]==A[3]) cout<<"Yes\n";
  else cout<<"No\n";
    
  return 0;
}
            
            
            
        
            
umezo