結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー gorugo30gorugo30
提出日時 2021-02-26 13:33:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-10-02 06:58:00
合計ジャッジ時間 1,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,088 KB
testcase_01 AC 37 ms
52,572 KB
testcase_02 AC 36 ms
52,884 KB
testcase_03 AC 36 ms
52,636 KB
testcase_04 AC 36 ms
53,376 KB
testcase_05 AC 36 ms
53,224 KB
testcase_06 AC 36 ms
53,720 KB
testcase_07 AC 36 ms
53,056 KB
testcase_08 AC 36 ms
52,268 KB
testcase_09 AC 35 ms
52,620 KB
testcase_10 AC 37 ms
53,084 KB
testcase_11 AC 37 ms
53,088 KB
testcase_12 AC 35 ms
52,052 KB
testcase_13 AC 36 ms
52,136 KB
testcase_14 AC 36 ms
52,740 KB
testcase_15 AC 36 ms
52,900 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 36 ms
52,532 KB
testcase_18 AC 37 ms
52,616 KB
testcase_19 AC 36 ms
52,964 KB
testcase_20 AC 37 ms
53,012 KB
testcase_21 AC 36 ms
52,800 KB
testcase_22 AC 36 ms
52,156 KB
testcase_23 AC 36 ms
52,964 KB
testcase_24 AC 36 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x1, y1, x2, y2, x3, y3 = map(int, input().split())
X = [x1, x2, x3]
Y = [y1, y2, y3]
for i in range(3):
    r1 = [X[(i + 1) % 3] - X[i], Y[(i + 1) % 3] - Y[i]]
    r2 = [X[(i - 1) % 3] - X[i], Y[(i - 1) % 3] - Y[i]]
    if r1[0] * r2[0] + r1[1] * r2[1] == 0 and r1[0] ** 2 + r1[1] ** 2 == r2[0] ** 2 + r2[1] ** 2:
        print(X[i] + r1[0] + r2[0], Y[i] + r1[1] + r2[1])
        exit()
print(-1)
0