結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー kou6839kou6839
提出日時 2014-11-24 15:34:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 804 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 83,368 KB
実行使用メモリ 55,152 KB
最終ジャッジ日時 2024-11-14 13:47:21
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,808 KB
testcase_01 AC 124 ms
54,092 KB
testcase_02 AC 155 ms
54,928 KB
testcase_03 AC 154 ms
54,924 KB
testcase_04 AC 129 ms
54,060 KB
testcase_05 AC 131 ms
54,032 KB
testcase_06 AC 131 ms
53,840 KB
testcase_07 AC 128 ms
53,852 KB
testcase_08 AC 130 ms
54,004 KB
testcase_09 AC 136 ms
54,244 KB
testcase_10 AC 131 ms
54,312 KB
testcase_11 AC 162 ms
54,716 KB
testcase_12 AC 121 ms
52,952 KB
testcase_13 AC 152 ms
55,124 KB
testcase_14 AC 152 ms
54,748 KB
testcase_15 AC 133 ms
54,028 KB
testcase_16 AC 154 ms
54,844 KB
testcase_17 AC 125 ms
54,008 KB
testcase_18 AC 149 ms
54,992 KB
testcase_19 AC 115 ms
53,060 KB
testcase_20 AC 160 ms
54,888 KB
testcase_21 AC 160 ms
55,064 KB
testcase_22 AC 160 ms
55,044 KB
testcase_23 AC 154 ms
54,848 KB
testcase_24 AC 153 ms
55,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
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();
        }
        for(int i=0;i<3;i++){
        	if( Math.pow(x[i]-x[(i+1)%3],2)+Math.pow(y[i]-y[(i+1)%3],2) ==Math.pow(x[i]-x[(i+2)%3],2)+Math.pow(y[i]-y[(i+2)%3],2) &&  Math.pow(x[i]-x[(i+1)%3],2)*2+Math.pow(y[i]-y[(i+1)%3],2)*2==Math.pow(x[(i+1)%3]-x[(i+2)%3],2)+Math.pow(y[(i+1)%3]-y[(i+2)%3],2)){
        		System.out.println( (x[(i+1)%3]-x[i]+x[(i+2)%3])+" "+(y[(i+1)%3]-y[i]+y[(i+2)%3]) );
        		return;
        	}
        }
        System.out.println(-1);
    }
}
0