結果

問題 No.2790 Athena 3
ユーザー ducktailducktail
提出日時 2024-06-23 17:55:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-23 17:55:45
合計ジャッジ時間 2,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 81 ms
12,416 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 82 ms
12,288 KB
testcase_07 AC 82 ms
12,416 KB
testcase_08 AC 82 ms
12,288 KB
testcase_09 AC 81 ms
12,288 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 85 ms
12,160 KB
testcase_12 AC 82 ms
12,160 KB
testcase_13 AC 88 ms
12,416 KB
testcase_14 AC 80 ms
12,160 KB
testcase_15 AC 82 ms
12,160 KB
testcase_16 AC 82 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module Athena3
  def self.solve(a)
    ax, ay, bx, by, cx, cy = a
    mx = 0
    ope([ax, ay]).each do |p0|
      ope([bx, by]).each do |p1|
        ope([cx, cy]).each do |p2|
          mx = [mx, area(p0, p1, p2)].max
        end
      end
    end
    mx
  end
  def self.ope(p)
    [
      [p[0]+1, p[1]],
      [p[0]-1, p[1]],
      [p[0], p[1]+1],
      [p[0], p[1]-1]
    ]
  end
  def self.area(a, b, c)
    x0 = b[0] - a[0]
    y0 = b[1] - a[1]
    x1 = c[0] - a[0]
    y1 = c[1] - a[1]
    (x0 * y1 - y0 * x1).abs / 2.0
  end
end

puts Athena3.solve(gets.chomp.split(/\s+/).map(&:to_i))

0