結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー maimai
提出日時 2017-02-04 19:45:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-06 14:16:30
合計ジャッジ時間 3,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
12,928 KB
testcase_01 AC 113 ms
12,928 KB
testcase_02 AC 101 ms
13,056 KB
testcase_03 AC 104 ms
13,056 KB
testcase_04 AC 107 ms
12,800 KB
testcase_05 AC 107 ms
12,800 KB
testcase_06 AC 104 ms
13,056 KB
testcase_07 AC 103 ms
13,056 KB
testcase_08 AC 105 ms
13,056 KB
testcase_09 AC 109 ms
12,928 KB
testcase_10 AC 104 ms
13,056 KB
testcase_11 AC 108 ms
12,928 KB
testcase_12 AC 106 ms
12,800 KB
testcase_13 AC 107 ms
12,928 KB
testcase_14 AC 108 ms
13,056 KB
testcase_15 AC 104 ms
12,928 KB
testcase_16 AC 106 ms
12,800 KB
testcase_17 AC 109 ms
13,056 KB
testcase_18 AC 109 ms
12,800 KB
testcase_19 AC 109 ms
12,928 KB
testcase_20 AC 105 ms
12,928 KB
testcase_21 AC 106 ms
12,928 KB
testcase_22 AC 106 ms
12,928 KB
testcase_23 AC 109 ms
13,056 KB
testcase_24 AC 109 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:32: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

require 'matrix'
ax,ay,bx,by,cx,cy=gets.split.map! &:to_i

def pr(v); puts "#{v[0]} #{v[1]}"; end

p1 = Vector[ax,ay]
p2 = Vector[bx,by]
p3 = Vector[cx,cy]

v1 = p1-p2
v2 = p2-p3
v3 = p3-p1

if v1.dot(v2) == 0
    if v1.r==v2.r
        pr p1-v2
        exit
    end
end
if v2.dot(v3) == 0
    if v2.r==v3.r
        pr p2-v3
        exit
    end
end
if v3.dot(v1) == 0
    if v3.r==v1.r
        pr p3-v1
        exit
    end
end
p -1
0