結果

問題 No.46 はじめのn歩
ユーザー 3qvwn3qvwn
提出日時 2019-07-01 23:20:43
言語 Elixir
(1.16.2)
結果
RE  
実行時間 -
コード長 271 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 62,964 KB
実行使用メモリ 56,916 KB
最終ジャッジ日時 2024-06-09 22:42:29
合計ジャッジ時間 8,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 645 ms
53,932 KB
testcase_01 AC 638 ms
54,188 KB
testcase_02 AC 640 ms
54,316 KB
testcase_03 AC 646 ms
54,056 KB
testcase_04 AC 645 ms
53,740 KB
testcase_05 AC 644 ms
53,876 KB
testcase_06 AC 639 ms
53,980 KB
testcase_07 AC 639 ms
54,184 KB
testcase_08 RE -
testcase_09 AC 649 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b] = IO.gets("") |> String.trim |> String.split |> Enum.map(fn str -> str <> ".0" end) |> Enum.map(&String.to_float(&1))
    n = b/a |> Float.ceil |> Float.to_string |> String.trim(".0") |> String.to_integer
    IO.puts n
  end
end
0