結果
問題 | No.55 正方形を描くだけの簡単なお仕事です。 |
ユーザー | tatt61880 |
提出日時 | 2021-03-20 18:16:03 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 828 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 148,472 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 11:55:38 |
合計ジャッジ時間 | 3,033 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,944 KB |
ソースコード
func main() var pos: []Pos :: #[3]Pos for i(0, 2) var x: int :: cui@inputInt() var y: int :: cui@inputInt() do pos[i] :: (#Pos).init(x, y) end for for i(0, 2) if(i <> 0) do swap(&pos[i], &pos[0]) end if if((pos[1].x - pos[0].x) * (pos[2].x - pos[0].x) + (pos[1].y - pos[0].y) * (pos[2].y - pos[0].y) = 0) if((pos[1].x - pos[0].x) ^ 2 + (pos[1].y - pos[0].y) ^ 2 = (pos[2].x - pos[0].x) ^ 2 + (pos[2].y - pos[0].y) ^ 2) do cui@print("\{pos[2].x + pos[1].x - pos[0].x} \{pos[2].y + pos[1].y - pos[0].y}\n") ret end if end if end for do cui@print("-1\n") func swap(a: &Pos, b: &Pos) var t: Pos :: ##a do a :: ##b do b :: ##t end func class Pos() +var x: int +var y: int +func init(x: int, y: int): Pos do me.x :: x do me.y :: y ret me end func end class end func