結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー リチウムリチウム
提出日時 2014-11-03 00:36:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 79,540 KB
実行使用メモリ 42,592 KB
最終ジャッジ日時 2024-06-09 18:52:59
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,520 KB
testcase_01 AC 108 ms
41,432 KB
testcase_02 AC 139 ms
42,356 KB
testcase_03 AC 135 ms
42,476 KB
testcase_04 AC 119 ms
41,444 KB
testcase_05 AC 114 ms
41,412 KB
testcase_06 AC 111 ms
41,332 KB
testcase_07 AC 108 ms
41,544 KB
testcase_08 AC 121 ms
41,352 KB
testcase_09 AC 117 ms
41,564 KB
testcase_10 AC 102 ms
41,476 KB
testcase_11 AC 125 ms
42,592 KB
testcase_12 AC 119 ms
41,188 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 103 ms
41,240 KB
testcase_16 WA -
testcase_17 AC 101 ms
41,524 KB
testcase_18 AC 135 ms
42,352 KB
testcase_19 AC 115 ms
41,400 KB
testcase_20 WA -
testcase_21 AC 122 ms
42,280 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 148 ms
42,356 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();
		}
		for(int i=0;i<3;i++){
		if(Math.hypot(x[i%3]-x[(i+1)%3],y[i%3]-y[(i+1)%3])==Math.hypot(x[(i+1)%3]-x[(i+2)%3],y[(i+1)%3]-y[(i+2)%3])){
			if(Math.hypot(x[i%3]-x[(i+1)%3],y[i%3]-y[(i+1)%3])*Math.pow(2,0.5)==Math.hypot(x[i%3]-x[(i+2)%3],y[i%3]-y[(i+2)%3])){
				int ansx=x[(i+2)%3]+x[i%3]-x[(i+1)%3];
				int ansy=y[(i+2)%3]+y[i%3]-y[(i+1)%3];
				System.out.println(ansx+" "+ansy);
				return;
			}
		}
		
		
	}
		System.out.println(-1);}
}
0