結果

問題 No.2208 Linear Function
ユーザー noriocnorioc
提出日時 2024-11-22 00:27:00
言語 Elixir
(1.16.2)
結果
AC  
実行時間 782 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 5,493 ms
コンパイル使用メモリ 61,248 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-11-22 00:27:10
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
53,844 KB
testcase_01 AC 746 ms
53,800 KB
testcase_02 AC 782 ms
54,100 KB
testcase_03 AC 754 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  @spec input() :: binary()
  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
    t = ii()
    for _ <- 1..t do
      [l, r, a, b] = li()
      if a >= 0 do
        a * r + b
      else
        a * l + b
      end
      |> IO.puts
    end
  end
end
0