結果
| 問題 | No.2515 Similar Triangles |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-13 02:09:06 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 380µs | |
| コード長 | 192 bytes |
| 記録 | |
| コンパイル時間 | 1,221 ms |
| コンパイル使用メモリ | 151,756 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-13 02:09:10 |
| 合計ジャッジ時間 | 2,875 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int x,y,x1,y1,x2;
cin >> x >> y >> x1 >> y1 >> x2;
if (y == y1) {
cout << "Yes" << endl;
return 0;
}
cout << "No" << endl;
}