結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー simansiman
提出日時 2016-03-27 04:24:16
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-02 03:50:51
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 97 ms
12,160 KB
testcase_05 AC 97 ms
12,160 KB
testcase_06 AC 97 ms
12,160 KB
testcase_07 AC 95 ms
12,032 KB
testcase_08 AC 97 ms
12,288 KB
testcase_09 AC 96 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 100 ms
12,032 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 100 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 97 ms
12,160 KB
testcase_18 AC 72 ms
12,288 KB
testcase_19 AC 95 ms
12,032 KB
testcase_20 AC 85 ms
12,160 KB
testcase_21 AC 82 ms
12,032 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:20: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    x1, y1, x2, y2, x3, y3 = gets.chomp.split.map(&:to_i)

    -100.upto(100) do |y|
      -100.upto(100) do |x|
        d1 = Math.sqrt((y-y1) ** 2 + (x-x1) ** 2)
        d2 = Math.sqrt((y-y2) ** 2 + (x-x2) ** 2)
        d3 = Math.sqrt((y-y3) ** 2 + (x-x3) ** 2)

        min_d = [d1,d2,d3].min

        if d1+d2+d3 == (2 + Math.sqrt(2)) * min_d
          puts [x, y].join(' ')
          return
        end
      end
    end

    puts -1
  end
end

Yukicoder.new
0