結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー J31831276J31831276
提出日時 2018-12-28 13:08:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 60,572 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 03:11:50
合計ジャッジ時間 1,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#include <vector>
#include <numeric>

#define ll long long

using namespace std;

int main(){
  
   int x1,y1,x2,y2,x3,y3;
   cin>>x1>>y1>>x2>>y2>>x3>>y3;
   int l1,l2,l3;
   l3=(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2);
   l2=(x1-x3)*(x1-x3)+(y1-y3)*(y1-y3);
   l1=(x3-x2)*(x3-x2)+(y3-y2)*(y3-y2);
   
   if(l1==l2&&l1*2==l3){
       cout<<x2+x1-x3<<" "<<y2+y1-y3<<endl;
   }else if(l1==l3&&l1*2==l2){
       cout<<x1+x3-x2<<" "<<y1+y3-y2<<endl;       
   }else if(l2==l3&&l2*2==l1){
       cout<<x2+x3-x1<<" "<<y2+y3-y1<<endl;         
   }else{
       cout<<-1<<endl;
   }

   return 0;
}
0