結果

問題 No.388 階段 (1)
ユーザー shiroshiro
提出日時 2019-06-07 18:07:10
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 1,258 ms
コンパイル使用メモリ 62,292 KB
実行使用メモリ 57,512 KB
最終ジャッジ日時 2024-06-09 22:37:20
合計ジャッジ時間 12,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 642 ms
54,192 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 642 ms
54,180 KB
testcase_05 AC 647 ms
53,732 KB
testcase_06 AC 644 ms
53,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 640 ms
54,196 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [s, f] = IO.gets("")
              |> String.trim
              |> String.split(" ")
              |> Enum.map(&String.to_integer/1)
    Float.ceil(s/f)
    |> Kernel.trunc
    |> add_one
    |> IO.puts
  end
  def add_one(x), do: x + 1
end
0