結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー scachescache
提出日時 2014-11-26 20:41:35
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 909 bytes
コンパイル時間 4,356 ms
コンパイル使用メモリ 79,408 KB
実行使用メモリ 55,052 KB
最終ジャッジ日時 2024-10-08 03:38:59
合計ジャッジ時間 8,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,796 KB
testcase_01 AC 131 ms
54,008 KB
testcase_02 AC 156 ms
54,436 KB
testcase_03 AC 156 ms
54,784 KB
testcase_04 WA -
testcase_05 AC 134 ms
54,456 KB
testcase_06 AC 132 ms
54,036 KB
testcase_07 AC 132 ms
54,116 KB
testcase_08 AC 132 ms
54,272 KB
testcase_09 AC 132 ms
54,244 KB
testcase_10 AC 134 ms
54,208 KB
testcase_11 AC 172 ms
54,840 KB
testcase_12 AC 131 ms
54,336 KB
testcase_13 AC 155 ms
54,780 KB
testcase_14 AC 158 ms
54,892 KB
testcase_15 AC 132 ms
53,924 KB
testcase_16 AC 158 ms
54,980 KB
testcase_17 AC 132 ms
54,084 KB
testcase_18 AC 161 ms
55,028 KB
testcase_19 AC 139 ms
54,028 KB
testcase_20 AC 155 ms
54,932 KB
testcase_21 AC 155 ms
55,000 KB
testcase_22 AC 155 ms
54,668 KB
testcase_23 AC 141 ms
54,540 KB
testcase_24 AC 155 ms
54,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main55 {
	public static void main(String[] args) {
		Main55 p = new Main55();
	}

	public Main55() {
		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();
		}
		solve(x, y);
	}

	public void solve(int[] x, int[] y) {
		String res = "";		
		for(int i=0;i<3;i++){
			if((res = isOk(x[i], y[i], x[(i+1)%3], y[(i+1)%3], x[(i+2)%3], y[(i+2)%3])) != null){
				System.out.println(res);
				return;
			}
		}
		System.out.println("-1");
	}

	private String isOk(int x1, int y1, int x2, int y2, int x3, int y3){
		int vx1 = x1-x2;
		int vx2 = x3-x2;
		int vy1 = y1-y2;
		int vy2 = y3-y2;
		if(vx1*vy1+vx2*vy2==0 && (vx1*vx1+vy1*vy1) == (vx2*vx2+vy2*vy2))
			return (x2+vx1+vx2) + " " + (y2+vy1+vy2);
		else
			return null;
	}
	
}
0