結果
| 問題 |
No.55 正方形を描くだけの簡単なお仕事です。
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-12 01:51:21 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 820 bytes |
| コンパイル時間 | 677 ms |
| コンパイル使用メモリ | 80,564 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-21 10:00:35 |
| 合計ジャッジ時間 | 1,753 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 21 |
ソースコード
#define _USE_MATH_DEFINES
#include<stdio.h>
#include<string>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include<iomanip>
//#include<bits/stdc++.h>
using namespace std;
int main() {
int x[5] = {}, y[5] = {};
for (int i = 0; i < 3; i++)cin >> x[i] >> y[i];
for (int i = 0; i < 3; i++) {
int da = x[0] - x[1],db=y[0]-y[1];
int dx = x[2] - x[1], dy = y[2] - y[1];
if (da*dx + db*dy == 0 && da*da + db*db == dx*dx + dy*dy) {
cout << x[0]+x[2]-x[1] << " " << y[0] +y[2]-y[1] << endl;
return 0;
}
int tx = x[0], ty = y[0];
for (int j = 0; j < 2; j++) {
x[j] = x[j+1], y[j ] = y[j+1];
}
x[2] = tx, y[2] = ty;
//cout << x[0];
}
cout << -1 << endl;
return 0;
}