結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー IrmystpIrmystp
提出日時 2014-12-07 23:12:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 60,660 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-26 22:10:23
合計ジャッジ時間 1,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 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>
#include <algorithm>
using namespace std;

int main(){
    pair<int, int> p[3];
    for(int i = 0; i < 3; i++) cin >> p[i].first >> p[i].second;
    sort(p, p + 3);
    bool eop = true;
    do{
        int vx1 = p[1].first - p[0].first, vy1 = p[1].second - p[0].second,
            vx2 = p[2].first - p[0].first, vy2 = p[2].second - p[0].second;
        if(vx1 * vx2 + vy1 * vy2 == 0 &&
              vx1 * vx1 + vy1 * vy1 == vx2 * vx2 + vy2 * vy2){
            cout << vx1+vx2+p[0].first << ' ' << vy1+vy2+p[0].second << endl;
            break;
        }

    }while(eop = next_permutation(p, p+3));
    if(!eop){
        cout << -1 << endl;
    }
    return 0;
}
0