結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー  nemunemu nemunemu
提出日時 2023-05-02 09:19:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,292 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 68,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 01:48:32
合計ジャッジ時間 1,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main() {
    int x1, y1, x2, y2, x3, y3;
    cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;

    int d12 = (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1);
    int d23 = (x3 - x2) * (x3 - x2) + (y3 - y2) * (y3 - y2);
    int d31 = (x1 - x3) * (x1 - x3) + (y1 - y3) * (y1 - y3);
    int dmax = max(d12, max(d23, d31));
    if (dmax == d31) {
        int dot = (x2 - x1) * (x3 - x2) + (y2 - y1) * (y3 - y2);
        if (d12 == d23 && dot == 0) {
            int x4 = x1 + (x3 - x2);
            int y4 = y1 + (y3 - y2);
            cout << x4 << " " << y4 << endl;
        } else {
            cout << -1 << endl;
        }
    } else if (dmax == d12) {
        int dot = (x1 - x3) * (x3 - x2) + (y1 - y3) * (y3 - y2);
        if (d23 == d31 && dot == 0) {
            int x4 = x1 - (x3 - x2);
            int y4 = y1 - (y3 - y2);
            cout << x4 << " " << y4 << endl;
        } else {
            cout << -1 << endl;
        }
    } else {
        int dot = (x2 - x1) * (x1 - x3) + (y2 - y1) * (y1 - y3);
        if (d31 == d12 && dot == 0) {
            int x4 = x2 - (x1 - x3);
            int y4 = y2 - (y1 - y3);
            cout << x4 << " " << y4 << endl;
        } else {
            cout << -1 << endl;
        }
    }   
}
0