結果

問題 No.306 さいたま2008
ユーザー noriocnorioc
提出日時 2024-08-07 09:49:23
言語 Elixir
(1.16.2)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 62,684 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-08-07 09:49:42
合計ジャッジ時間 18,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
54,676 KB
testcase_01 AC 507 ms
54,468 KB
testcase_02 AC 527 ms
54,148 KB
testcase_03 AC 512 ms
55,136 KB
testcase_04 AC 505 ms
54,360 KB
testcase_05 AC 529 ms
53,976 KB
testcase_06 AC 501 ms
54,284 KB
testcase_07 AC 522 ms
53,908 KB
testcase_08 AC 505 ms
54,392 KB
testcase_09 AC 503 ms
54,364 KB
testcase_10 AC 536 ms
54,164 KB
testcase_11 AC 501 ms
54,372 KB
testcase_12 AC 522 ms
53,920 KB
testcase_13 AC 500 ms
54,368 KB
testcase_14 AC 499 ms
54,252 KB
testcase_15 AC 522 ms
53,744 KB
testcase_16 AC 501 ms
54,776 KB
testcase_17 AC 522 ms
54,876 KB
testcase_18 AC 510 ms
54,336 KB
testcase_19 AC 501 ms
55,400 KB
testcase_20 AC 528 ms
53,876 KB
testcase_21 AC 498 ms
53,996 KB
testcase_22 AC 523 ms
54,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: variable "x3" is unused (if the variable is not meant to be used, prefix it with an underscore)
    │
 11 │     [x3, y3] = [-x1, y1]
    │      ~~
    │
    └─ Main.exs:11:6: Main.main/0

    warning: the result of evaluating operator '-'/1 is ignored (suppress the warning by assigning the expression to the _ variable)
    │
 11 │     [x3, y3] = [-x1, y1]
    │     ~~~~~~~~~~~~~~~~~~~~
    │
    └─ Main.exs:11

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [x1, y1] = li()
    [x2, y2] = li()

    [x3, y3] = [-x1, y1]
    a = x1
    b = x2

    # x = (x3 * b + x2 * a) / (x3 + x2)
    y = (y3 * b + y2 * a) / (a + b)
    IO.puts y
  end
end
0