結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー リチウムリチウム
提出日時 2014-11-03 02:33:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 903 bytes
コンパイル時間 2,769 ms
コンパイル使用メモリ 80,044 KB
実行使用メモリ 57,872 KB
最終ジャッジ日時 2024-11-14 13:42:26
合計ジャッジ時間 8,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
57,468 KB
testcase_01 AC 201 ms
56,924 KB
testcase_02 AC 207 ms
57,712 KB
testcase_03 AC 221 ms
57,728 KB
testcase_04 AC 208 ms
57,112 KB
testcase_05 AC 209 ms
56,964 KB
testcase_06 AC 213 ms
56,780 KB
testcase_07 AC 212 ms
56,884 KB
testcase_08 AC 197 ms
57,000 KB
testcase_09 AC 216 ms
56,668 KB
testcase_10 AC 212 ms
56,780 KB
testcase_11 AC 216 ms
57,756 KB
testcase_12 AC 230 ms
57,100 KB
testcase_13 AC 217 ms
57,776 KB
testcase_14 AC 226 ms
57,764 KB
testcase_15 AC 212 ms
56,660 KB
testcase_16 AC 224 ms
57,640 KB
testcase_17 AC 223 ms
57,092 KB
testcase_18 AC 214 ms
57,872 KB
testcase_19 AC 205 ms
56,936 KB
testcase_20 AC 202 ms
57,596 KB
testcase_21 AC 205 ms
57,328 KB
testcase_22 AC 238 ms
57,804 KB
testcase_23 AC 229 ms
57,428 KB
testcase_24 AC 203 ms
57,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	static boolean square_check(int x[], int y[]) {
		int v[] = new int[6];
		int count = 0;
		for (int i = 0; i < 4; i++)
			for (int j = i + 1; j < 4; j++) {
				int dx = x[i] - x[j], dy = y[i] - y[j];
				v[count] = (dx * dx + dy * dy);
				count++;
			}
		Arrays.sort(v);
		int l = v[0];
		if (l == 0)
			return false;
		return v[0] == l && v[1] == l && v[2] == l && v[3] == l
				&& v[4] == l * 2 && v[5] == l * 2;
	}
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int x[]=new int[4];
		int y[]=new int[4];
		for(int i=0;i<3;i++){
			x[i]=sc.nextInt();
			y[i]=sc.nextInt();
		}
		for(int i=-300;i<=300;i++){
			for(int j=-300;j<=300;j++){
				x[3]=i;
				y[3]=j;
				if(square_check(x,y)){
					System.out.println(i+" "+j);
					return;
				}
			}
		}
		System.out.println(-1);
	}}
0