結果

問題 No.2515 Similar Triangles
ユーザー umezoumezo
提出日時 2023-10-27 22:18:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 202,876 KB
実行使用メモリ 8,220 KB
最終ジャッジ日時 2024-09-25 14:20:54
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,220 KB
testcase_01 AC 4 ms
8,180 KB
testcase_02 AC 5 ms
8,144 KB
testcase_03 AC 5 ms
8,028 KB
testcase_04 AC 5 ms
8,016 KB
testcase_05 AC 4 ms
8,172 KB
testcase_06 AC 4 ms
8,092 KB
testcase_07 AC 4 ms
8,100 KB
testcase_08 AC 5 ms
8,196 KB
testcase_09 AC 5 ms
8,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0