結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー kotatsugamekotatsugame
提出日時 2017-10-04 22:20:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 509 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 06:05:50
合計ジャッジ時間 1,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int a,b,c,d,e,f;
int cal(int x,int y){return x*x+y*y;}
main()
{
	cin>>a>>b>>c>>d>>e>>f;
	if(cal(a-c,b-d)==cal(a-e,b-f)&&cal(a-c,b-d)+cal(a-e,b-f)==cal(c-e,d-f))
	{
		cout<<e+(c-a)<<" "<<f+(d-b)<<endl;
	}
	else if(cal(a-c,b-d)==cal(c-e,d-f)&&cal(a-c,b-d)+cal(c-e,d-f)==cal(a-e,b-f))
	{
		cout<<e+(a-c)<<" "<<f+(b-d)<<endl;
	}
	else if(cal(a-e,b-f)==cal(c-e,d-f)&&cal(a-e,b-f)+cal(c-e,d-f)==cal(a-c,b-d))
	{
		cout<<a+(c-e)<<" "<<b+(d-f)<<endl;
	}
	else cout<<-1<<endl;
}
0