結果

問題 No.46 はじめのn歩
ユーザー gemmarogemmaro
提出日時 2020-04-07 16:32:13
言語 Elixir
(1.16.2)
結果
AC  
実行時間 588 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 62,132 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-09 23:10:35
合計ジャッジ時間 7,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
54,180 KB
testcase_01 AC 546 ms
54,168 KB
testcase_02 AC 537 ms
53,880 KB
testcase_03 AC 554 ms
54,412 KB
testcase_04 AC 523 ms
53,984 KB
testcase_05 AC 533 ms
54,072 KB
testcase_06 AC 539 ms
54,056 KB
testcase_07 AC 579 ms
54,132 KB
testcase_08 AC 563 ms
53,720 KB
testcase_09 AC 588 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b] =
      IO.gets("")
      |> String.trim()
      |> String.split()
      |> Enum.map(fn s -> String.to_integer(s) end)

    (b / a)
    |> Float.ceil()
    |> trunc
    |> IO.puts()
  end
end
0