結果
問題 | No.55 正方形を描くだけの簡単なお仕事です。 |
ユーザー | Grenache |
提出日時 | 2015-11-03 20:06:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 5,000 ms |
コード長 | 1,063 bytes |
コンパイル時間 | 3,365 ms |
コンパイル使用メモリ | 77,796 KB |
実行使用メモリ | 54,332 KB |
最終ジャッジ日時 | 2024-11-14 13:52:21 |
合計ジャッジ時間 | 7,703 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
53,964 KB |
testcase_01 | AC | 133 ms
54,280 KB |
testcase_02 | AC | 132 ms
53,924 KB |
testcase_03 | AC | 133 ms
54,332 KB |
testcase_04 | AC | 131 ms
54,100 KB |
testcase_05 | AC | 133 ms
53,896 KB |
testcase_06 | AC | 118 ms
53,020 KB |
testcase_07 | AC | 132 ms
54,136 KB |
testcase_08 | AC | 134 ms
54,104 KB |
testcase_09 | AC | 135 ms
54,084 KB |
testcase_10 | AC | 131 ms
53,896 KB |
testcase_11 | AC | 132 ms
53,776 KB |
testcase_12 | AC | 133 ms
54,092 KB |
testcase_13 | AC | 132 ms
53,984 KB |
testcase_14 | AC | 135 ms
54,084 KB |
testcase_15 | AC | 133 ms
54,164 KB |
testcase_16 | AC | 135 ms
53,888 KB |
testcase_17 | AC | 133 ms
54,116 KB |
testcase_18 | AC | 135 ms
53,992 KB |
testcase_19 | AC | 131 ms
54,044 KB |
testcase_20 | AC | 132 ms
53,964 KB |
testcase_21 | AC | 131 ms
54,180 KB |
testcase_22 | AC | 134 ms
54,292 KB |
testcase_23 | AC | 137 ms
54,140 KB |
testcase_24 | AC | 135 ms
54,244 KB |
ソースコード
import java.util.Scanner; public class Main_yukicoder55 { 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++) { int xx1 = x[(i + 1) % 3] - x[i]; int yy1 = y[(i + 1) % 3] - y[i]; int xx2 = x[(i + 2) % 3] - x[i]; int yy2 = y[(i + 2) % 3] - y[i]; if (Geom.dot(xx1, yy1, xx2, yy2) == 0 && Geom.sumofsquare(xx1, yy1) == Geom.sumofsquare(xx2, yy2)) { System.out.printf("%d %d\n", xx1 + xx2 + x[i], yy1 + yy2 + y[i]); sc.close(); return; } } System.out.println("-1"); sc.close(); } private static class Geom { static int dot(int xa, int ya, int xb, int yb) { return xa * xb + ya * yb; } static int sumofsquare(int xa, int ya) { return xa * xa + ya * ya; } } }