結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-21 16:21:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 1,177 bytes
コンパイル時間 3,222 ms
コンパイル使用メモリ 78,932 KB
実行使用メモリ 42,444 KB
最終ジャッジ日時 2024-11-27 09:27:31
合計ジャッジ時間 6,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
42,232 KB
testcase_01 AC 121 ms
40,808 KB
testcase_02 AC 146 ms
42,424 KB
testcase_03 AC 127 ms
42,108 KB
testcase_04 AC 119 ms
40,984 KB
testcase_05 AC 117 ms
41,200 KB
testcase_06 AC 120 ms
40,984 KB
testcase_07 AC 109 ms
39,896 KB
testcase_08 AC 119 ms
41,216 KB
testcase_09 AC 129 ms
41,536 KB
testcase_10 AC 119 ms
40,928 KB
testcase_11 AC 144 ms
42,288 KB
testcase_12 AC 121 ms
41,160 KB
testcase_13 AC 142 ms
41,980 KB
testcase_14 AC 132 ms
41,824 KB
testcase_15 AC 118 ms
41,084 KB
testcase_16 AC 133 ms
42,020 KB
testcase_17 AC 118 ms
41,112 KB
testcase_18 AC 143 ms
42,220 KB
testcase_19 AC 118 ms
40,832 KB
testcase_20 AC 144 ms
42,356 KB
testcase_21 AC 145 ms
42,444 KB
testcase_22 AC 140 ms
42,272 KB
testcase_23 AC 153 ms
42,240 KB
testcase_24 AC 127 ms
41,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int [] x = new int [3];
        int [] y = new int [3];
        for(int i=0; i<3; i++){
            x[i] = sc.nextInt();
            y[i] = sc.nextInt();
        }
        int c=check(x,y,0);
        if(c==-1){
            System.out.println(-1);
        }else{
            int x4=point(x,c);
            int y4=point(y,c);
            System.out.println(x4+" "+y4);
        }
    }
    static int check(int[]x, int[]y,int z){
        if(z==3){
            return -1;
        }
        int ax = x[z%3]-x[(z+1)%3];
        int bx = x[(z+2)%3]-x[(z+1)%3];
        int cx = x[z%3]-x[(z+2)%3];
        int ay = y[z%3]-y[(z+1)%3];
        int by = y[(z+2)%3]-y[(z+1)%3];
        int cy = y[z%3]-y[(z+2)%3];
        int d1 = ax*ax+ay*ay;
        int d2 = bx*bx+by*by;
        int d3 = cx*cx+cy*cy;
        if(d1==d2&&d1+d2==d3){
            return z;
        }else{
            return check(x,y,z+1);
        }
    }
    static int point(int[]A,int B){
        int n = A[(B+2)%3]-A[(B+1)%3];
        int r = A[B%3]+n;
        return r;
    }
}
0