結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー htensaihtensai
提出日時 2019-12-30 13:23:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 1,333 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 85,908 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-11-08 02:59:17
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,364 KB
testcase_01 AC 135 ms
41,024 KB
testcase_02 AC 159 ms
42,156 KB
testcase_03 AC 160 ms
42,420 KB
testcase_04 AC 135 ms
41,136 KB
testcase_05 AC 134 ms
41,400 KB
testcase_06 AC 136 ms
41,248 KB
testcase_07 AC 134 ms
41,316 KB
testcase_08 AC 135 ms
41,168 KB
testcase_09 AC 135 ms
41,460 KB
testcase_10 AC 136 ms
41,348 KB
testcase_11 AC 159 ms
42,052 KB
testcase_12 AC 128 ms
41,052 KB
testcase_13 AC 147 ms
42,068 KB
testcase_14 AC 157 ms
42,276 KB
testcase_15 AC 135 ms
41,032 KB
testcase_16 AC 160 ms
42,308 KB
testcase_17 AC 133 ms
40,856 KB
testcase_18 AC 147 ms
41,924 KB
testcase_19 AC 132 ms
41,264 KB
testcase_20 AC 159 ms
42,420 KB
testcase_21 AC 155 ms
42,248 KB
testcase_22 AC 155 ms
42,260 KB
testcase_23 AC 155 ms
42,156 KB
testcase_24 AC 155 ms
42,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Point p1 = new Point(sc.nextInt(), sc.nextInt());
        Point p2 = new Point(sc.nextInt(), sc.nextInt());
        Point p3 = new Point(sc.nextInt(), sc.nextInt());
        int d1 = p2.getD(p3);
        int d2 = p3.getD(p1);
        int d3 = p1.getD(p2);
        Point p4;
        if (d1 == d2 && d1 * 2 == d3) {
            p4 = p3.getAnother(p1, p2);
        } else if (d2 == d3 && d2 * 2 == d1) {
            p4 = p1.getAnother(p2, p3);
        } else if (d3 == d1 && d3 * 2 == d2) {
            p4 = p2.getAnother(p3, p1);
        } else {
            System.out.println(-1);
            return;
        }
        System.out.println(p4);
    }
    
    static class Point {
        int x;
        int y;
        
        public Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
        
        public int getD(Point another) {
            return (x - another.x) * (x - another.x) + (y - another.y) * (y - another.y);
        }
        
        public Point getAnother(Point p1, Point p2) {
            return new Point(p1.x + p2.x - x, p1.y + p2.y - y);
        }
        
        public String toString() {
            return x + " " + y;
        }
    }
}
0