結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー kano_townkano_town
提出日時 2014-11-23 22:54:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 885 bytes
コンパイル時間 3,731 ms
コンパイル使用メモリ 79,748 KB
実行使用メモリ 55,116 KB
最終ジャッジ日時 2024-11-14 13:47:09
合計ジャッジ時間 8,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,828 KB
testcase_01 AC 120 ms
52,820 KB
testcase_02 AC 157 ms
54,804 KB
testcase_03 AC 158 ms
55,008 KB
testcase_04 AC 135 ms
54,024 KB
testcase_05 AC 132 ms
54,256 KB
testcase_06 AC 132 ms
54,004 KB
testcase_07 AC 130 ms
54,040 KB
testcase_08 AC 132 ms
53,884 KB
testcase_09 AC 135 ms
54,172 KB
testcase_10 AC 134 ms
54,068 KB
testcase_11 AC 159 ms
54,708 KB
testcase_12 AC 132 ms
54,108 KB
testcase_13 AC 153 ms
55,056 KB
testcase_14 AC 158 ms
55,116 KB
testcase_15 AC 132 ms
54,160 KB
testcase_16 AC 158 ms
54,996 KB
testcase_17 AC 134 ms
54,240 KB
testcase_18 AC 161 ms
54,940 KB
testcase_19 AC 131 ms
54,088 KB
testcase_20 AC 156 ms
54,916 KB
testcase_21 AC 155 ms
54,980 KB
testcase_22 AC 159 ms
54,648 KB
testcase_23 AC 155 ms
55,016 KB
testcase_24 AC 157 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder55 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] x = new int[4];
		int[] y = new int[4];
		int[][] pat = {{0, 1, 2}, {1, 0, 2}, {2, 0, 1}};

		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[pat[i][1]] - x[pat[i][0]], y[pat[i][1]] - y[pat[i][0]]) == Math.hypot(x[pat[i][2]] - x[pat[i][0]], y[pat[i][2]] - y[pat[i][0]])) {
				x[3] = x[pat[i][1]] + (x[pat[i][2]] - x[pat[i][0]]);
				y[3] = y[pat[i][1]] + (y[pat[i][2]] - y[pat[i][0]]);
				if (Math.hypot(x[3] - x[pat[i][0]], y[3] - y[pat[i][0]]) == Math.hypot(x[pat[i][2]] - x[pat[i][1]], y[pat[i][2]] - y[pat[i][1]])) {
					System.out.println(x[3] + " " + y[3]);
					return;
				}
			}
		}
		System.out.println("-1");
	}
}
0