結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー kano_townkano_town
提出日時 2014-11-19 22:37:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 3,630 ms
コンパイル使用メモリ 79,192 KB
実行使用メモリ 42,468 KB
最終ジャッジ日時 2024-06-10 21:17:07
合計ジャッジ時間 8,429 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,468 KB
testcase_01 AC 133 ms
41,232 KB
testcase_02 AC 153 ms
42,392 KB
testcase_03 AC 159 ms
41,956 KB
testcase_04 WA -
testcase_05 AC 132 ms
41,040 KB
testcase_06 AC 120 ms
39,976 KB
testcase_07 AC 133 ms
41,172 KB
testcase_08 AC 137 ms
41,212 KB
testcase_09 AC 134 ms
41,004 KB
testcase_10 AC 141 ms
41,036 KB
testcase_11 AC 159 ms
42,064 KB
testcase_12 WA -
testcase_13 AC 165 ms
42,328 KB
testcase_14 AC 164 ms
42,212 KB
testcase_15 AC 144 ms
41,116 KB
testcase_16 AC 165 ms
42,088 KB
testcase_17 WA -
testcase_18 AC 161 ms
42,276 KB
testcase_19 AC 132 ms
41,260 KB
testcase_20 AC 160 ms
42,200 KB
testcase_21 AC 162 ms
42,192 KB
testcase_22 AC 158 ms
42,328 KB
testcase_23 AC 157 ms
42,196 KB
testcase_24 AC 166 ms
42,340 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]]);
				System.out.println(x[3] + " " + y[3]);
				return;
			}
		}
		System.out.println("-1");
	}
}
0