結果
| 問題 | No.2515 Similar Triangles |
| コンテスト | |
| ユーザー |
forest3
|
| 提出日時 | 2024-01-02 19:09:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 260 bytes |
| コンパイル時間 | 1,676 ms |
| コンパイル使用メモリ | 166,848 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-27 17:52:03 |
| 合計ジャッジ時間 | 2,330 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for( ll i = 0; i < n; i++ )
using ll = long long;
int main() {
int x1, y1, x2, y2, x3;
cin >> x1 >> y1 >> x2 >> y2 >> x3;
string ans = "No";
if(y1 == y2) ans = "Yes";
cout << ans << endl;
}
forest3