結果
| 問題 |
No.55 正方形を描くだけの簡単なお仕事です。
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-04 22:20:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 509 bytes |
| コンパイル時間 | 555 ms |
| コンパイル使用メモリ | 63,488 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-16 18:52:40 |
| 合計ジャッジ時間 | 1,480 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 21 |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
5 | main()
| ^~~~
ソースコード
#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;
}