結果

問題 No.2621 Fee Schedule
ユーザー noriocnorioc
提出日時 2024-08-12 02:47:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 63,000 KB
実行使用メモリ 55,468 KB
最終ジャッジ日時 2024-08-12 02:47:17
合計ジャッジ時間 9,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
54,356 KB
testcase_01 AC 565 ms
54,652 KB
testcase_02 AC 549 ms
55,468 KB
testcase_03 AC 570 ms
54,352 KB
testcase_04 AC 539 ms
54,068 KB
testcase_05 AC 565 ms
54,708 KB
testcase_06 AC 550 ms
54,752 KB
testcase_07 AC 562 ms
53,748 KB
testcase_08 AC 538 ms
54,284 KB
testcase_09 AC 545 ms
53,996 KB
testcase_10 AC 555 ms
54,584 KB
testcase_11 AC 536 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

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
    [a, b, c] = li()

    ans = min(c * a, b)
    IO.puts ans
  end
end
0