結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー SSRSSSRS
提出日時 2020-09-02 07:40:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 728 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 67,968 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 10:23:48
合計ジャッジ時間 1,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
	int x1, y1, x2, y2, x3, y3;
	cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;
	int s12 = (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1);
	int s23 = (x3 - x2) * (x3 - x2) + (y3 - y2) * (y3 - y2);
	int s31 = (x1 - x3) * (x1 - x3) + (y1 - y3) * (y1 - y3);
	if (s31 == s12 && (x2 - x1) * (x3 - x1) + (y2 - y1) * (y3 - y1) == 0){
		cout << x2 + x3 - x1 << ' ' << y2 + y3 - y1 << endl;
	} else if (s12 == s23 && (x3 - x2) * (x1 - x2) + (y3 - y2) * (y1 - y2) == 0){
		cout << x3 + x1 - x2 << ' ' << y3 + y1 - y2 << endl;
	} else if (s23 == s31 && (x1 - x3) * (x2 - x3) + (y1 - y3) *(y2 - y3) == 0){
		cout << x1 + x2 - x3 << ' ' << y1 + y2 - y3 << endl;
	} else {
		cout << -1 << endl;
	}
}
0