結果

問題 No.926 休日の平均
ユーザー penqenpenqen
提出日時 2020-12-25 01:24:44
言語 Elixir
(1.16.2)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 1,172 ms
コンパイル使用メモリ 62,564 KB
実行使用メモリ 55,284 KB
最終ジャッジ日時 2024-06-10 00:28:21
合計ジャッジ時間 15,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
54,116 KB
testcase_01 AC 547 ms
54,240 KB
testcase_02 AC 547 ms
54,544 KB
testcase_03 AC 553 ms
54,132 KB
testcase_04 AC 572 ms
54,128 KB
testcase_05 AC 552 ms
54,008 KB
testcase_06 AC 547 ms
54,596 KB
testcase_07 AC 558 ms
54,136 KB
testcase_08 AC 545 ms
53,864 KB
testcase_09 AC 566 ms
54,208 KB
testcase_10 AC 538 ms
55,284 KB
testcase_11 AC 541 ms
54,220 KB
testcase_12 AC 539 ms
53,780 KB
testcase_13 AC 543 ms
54,640 KB
testcase_14 AC 529 ms
53,984 KB
testcase_15 AC 558 ms
55,172 KB
testcase_16 AC 559 ms
54,348 KB
testcase_17 AC 572 ms
54,728 KB
testcase_18 AC 539 ms
54,508 KB
testcase_19 AC 575 ms
54,596 KB
testcase_20 AC 566 ms
54,704 KB
testcase_21 AC 553 ms
54,648 KB
testcase_22 AC 541 ms
54,012 KB
testcase_23 AC 555 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b, c] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(a, b, c) |> IO.puts()
  end

  def solve(a, b, c) do
    Float.floor(a / b * c, 8)
  end
end
0