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