結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー rn4rurn4ru
提出日時 2016-04-14 08:31:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 831 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 79,372 KB
実行使用メモリ 54,968 KB
最終ジャッジ日時 2024-11-14 13:54:42
合計ジャッジ時間 6,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,872 KB
testcase_01 AC 121 ms
54,100 KB
testcase_02 AC 152 ms
54,936 KB
testcase_03 AC 153 ms
54,332 KB
testcase_04 AC 125 ms
53,920 KB
testcase_05 AC 128 ms
54,204 KB
testcase_06 AC 119 ms
52,816 KB
testcase_07 AC 126 ms
53,920 KB
testcase_08 AC 124 ms
54,140 KB
testcase_09 AC 123 ms
53,852 KB
testcase_10 AC 125 ms
54,084 KB
testcase_11 AC 156 ms
54,716 KB
testcase_12 AC 131 ms
54,164 KB
testcase_13 AC 155 ms
54,844 KB
testcase_14 AC 145 ms
54,392 KB
testcase_15 AC 116 ms
53,076 KB
testcase_16 AC 155 ms
54,716 KB
testcase_17 AC 130 ms
54,176 KB
testcase_18 AC 153 ms
54,848 KB
testcase_19 AC 131 ms
54,104 KB
testcase_20 AC 153 ms
54,836 KB
testcase_21 AC 149 ms
54,968 KB
testcase_22 AC 143 ms
54,716 KB
testcase_23 AC 147 ms
54,736 KB
testcase_24 AC 152 ms
54,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int x1, y1, x2, y2, x3, y3;
		x1 = scanner.nextInt();
		y1 = scanner.nextInt();
		x2 = scanner.nextInt();
		y2 = scanner.nextInt();
		x3 = scanner.nextInt();
		y3 = scanner.nextInt();

		if (f(x1, y1, x2, y2, x3, y3) || f(x1, y1, x3, y3, x2, y2) || f(x2, y2, x1, y1, x3, y3)
				|| f(x2, y2, x3, y3, x1, y1) || f(x3, y3, x2, y2, x1, y1) || f(x3, y3, x1, y1, x2, y2)) {

		} else {
			System.out.println(-1);
		}

	}

	private static boolean f(int x1, int y1, int x2, int y2, int x3, int y3) {
		int dx = x2 - x1;
		int dy = y2 - y1;
		if (y3 == y2 + dx && x3 == x2 - dy) {
			int x4 = x3 - dx;
			int y4 = y3 - dy;
			System.out.println(x4 + " " + y4);
			return true;
		}
		return false;
	}

}
0