結果
問題 | No.55 正方形を描くだけの簡単なお仕事です。 |
ユーザー | dazy |
提出日時 | 2018-06-12 23:52:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,320 bytes |
コンパイル時間 | 1,470 ms |
コンパイル使用メモリ | 168,132 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 13:58:27 |
合計ジャッジ時間 | 2,297 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define fastcin {\ cin.tie(0);\ ios::sync_with_stdio(false);\ } #define rep(i, a, b) for(int i = a; i < b; i++) #define rrep(i, a, b) for(int i = a; i >= b; i--) #define fore(i, a) for(auto &i:a) #define print(x) cout << x << "\n" #define SORT(a, n) sort(a, a+n); #define REVERSE(a,n) reverse(a,a+n); #define VSORT(v) sort(v.begin(), v.end()); #define VREVERSE(v) reverse(v.begin(), v.end()); #define MOD 1000000007 #define yes "YES" #define no "NO" typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ll> vll; struct xy { int x; int y; bool operator<(const xy& another) const { if(x != another.x) { return x < another.x; } return y < another.y; } }; int main() { fastcin; xy c[3]; rep(i, 0, 3) { cin >> c[i].x >> c[i].y; } int d[3]; int dx, dy, x, y, a; d[0] = pow(c[1].x-c[0].x, 2) + pow(c[1].y-c[0].y, 2); d[1] = pow(c[2].x-c[1].x, 2) + pow(c[2].y-c[1].y, 2); d[2] = pow(c[0].x-c[2].x, 2) + pow(c[0].y-c[2].y, 2); if(!d[0]||!d[1]||!d[2]) printf("-1\n"); else if(d[0]==d[1]) { if(d[0]+d[1]==d[2]) { dx = c[2].x-c[1].x; dy = c[2].y-c[1].y; x = c[2].x+dy; y = c[2].y-dx; a = pow(c[1].x-x, 2) + pow(c[1].y-y, 2); if(a!=d[2]) { x = c[2].x-dy; y = c[2].y+dx; } printf("%d %d\n", x, y); } } else if(d[1]==d[2]) { if(d[1]+d[2]==d[0]) { dx = c[0].x-c[2].x; dy = c[0].y-c[2].y; x = c[0].x+dy; y = c[0].y-dx; a = pow(c[2].x-x, 2) + pow(c[2].y-y, 2); if(a!=d[0]) { x = c[0].x-dy; y = c[0].y+dx; } printf("%d %d\n", x, y); } } else if(d[2]==d[0]) { if(d[2]+d[0]==d[1]) { dx = c[2].x-c[0].x; dy = c[2].y-c[0].y; x = c[2].x+dy; y = c[2].y-dx; a = pow(c[0].x-x, 2) + pow(c[0].y-y, 2); if(a!=d[1]) { x = c[2].x-dy; y = c[2].y+dx; } printf("%d %d\n", x, y); } } else printf("-1\n"); return 0; }