結果
問題 | No.55 正方形を描くだけの簡単なお仕事です。 |
ユーザー | samplelpmas |
提出日時 | 2017-02-04 20:29:39 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 816 bytes |
コンパイル時間 | 2,125 ms |
コンパイル使用メモリ | 75,920 KB |
実行使用メモリ | 42,292 KB |
最終ジャッジ日時 | 2024-06-06 14:17:02 |
合計ジャッジ時間 | 6,064 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 117 ms
39,832 KB |
testcase_02 | AC | 149 ms
42,096 KB |
testcase_03 | WA | - |
testcase_04 | AC | 119 ms
41,028 KB |
testcase_05 | AC | 115 ms
41,184 KB |
testcase_06 | AC | 120 ms
41,044 KB |
testcase_07 | AC | 119 ms
41,440 KB |
testcase_08 | AC | 117 ms
41,180 KB |
testcase_09 | AC | 119 ms
41,144 KB |
testcase_10 | AC | 119 ms
41,252 KB |
testcase_11 | WA | - |
testcase_12 | AC | 106 ms
39,872 KB |
testcase_13 | AC | 131 ms
41,908 KB |
testcase_14 | WA | - |
testcase_15 | AC | 119 ms
40,984 KB |
testcase_16 | WA | - |
testcase_17 | AC | 119 ms
41,244 KB |
testcase_18 | WA | - |
testcase_19 | AC | 112 ms
40,144 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 148 ms
42,108 KB |
testcase_23 | WA | - |
testcase_24 | AC | 144 ms
42,292 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x1 = sc.nextInt(); int y1 = sc.nextInt(); int x2 = sc.nextInt(); int y2 = sc.nextInt(); int x3 = sc.nextInt(); int y3 = sc.nextInt(); for (int i = 0; i < 3; i++) { if ((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2) == (x2 - x3) * (x2 - x3) + (y2 - y3) * (y2 - y3)) { if ((x1 - x2) * (x2 - x3) + (y1 - y2) * (y2 - y3) == 0) { int x4 = x3 + x1 - x2; int y4 = y3 + y1 - y2; System.out.println(x4 + " " + y4); return; } } } System.out.println(-1); } }