結果

問題 No.46 はじめのn歩
ユーザー shiroshiro
提出日時 2021-07-10 21:55:10
言語 Elixir
(1.16.2)
結果
AC  
実行時間 643 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 62,372 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-07-02 02:52:18
合計ジャッジ時間 8,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
54,084 KB
testcase_01 AC 624 ms
53,944 KB
testcase_02 AC 630 ms
53,672 KB
testcase_03 AC 643 ms
53,912 KB
testcase_04 AC 624 ms
53,728 KB
testcase_05 AC 621 ms
54,276 KB
testcase_06 AC 627 ms
54,076 KB
testcase_07 AC 624 ms
53,852 KB
testcase_08 AC 627 ms
53,936 KB
testcase_09 AC 631 ms
54,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b] = IO.gets("")
                |> String.trim
                |> String.split(" ")
                |> Enum.map(&String.to_integer/1)

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

  end
end
0