結果

問題 No.388 階段 (1)
ユーザー gemmarogemmaro
提出日時 2020-04-08 11:44:29
言語 Elixir
(1.16.2)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 1,208 ms
コンパイル使用メモリ 63,756 KB
実行使用メモリ 55,696 KB
最終ジャッジ日時 2024-06-09 23:12:31
合計ジャッジ時間 10,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 539 ms
54,252 KB
testcase_01 AC 565 ms
54,780 KB
testcase_02 AC 531 ms
54,056 KB
testcase_03 AC 544 ms
54,996 KB
testcase_04 AC 547 ms
53,888 KB
testcase_05 AC 544 ms
54,252 KB
testcase_06 AC 533 ms
54,348 KB
testcase_07 AC 529 ms
54,624 KB
testcase_08 AC 531 ms
55,696 KB
testcase_09 AC 528 ms
54,164 KB
testcase_10 AC 527 ms
54,132 KB
testcase_11 AC 544 ms
53,988 KB
testcase_12 AC 548 ms
54,128 KB
testcase_13 AC 532 ms
54,456 KB
testcase_14 AC 536 ms
54,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    (Float.floor(s / f) + 1)
    |> trunc
    |> IO.puts()
  end
end
0