結果

問題 No.388 階段 (1)
ユーザー shiroshiro
提出日時 2021-07-10 23:48:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 969 ms
コンパイル使用メモリ 62,364 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-07-02 02:54:59
合計ジャッジ時間 11,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 630 ms
53,540 KB
testcase_01 AC 624 ms
53,752 KB
testcase_02 AC 627 ms
53,808 KB
testcase_03 AC 624 ms
53,808 KB
testcase_04 AC 619 ms
54,072 KB
testcase_05 AC 624 ms
53,808 KB
testcase_06 AC 623 ms
53,680 KB
testcase_07 AC 622 ms
53,668 KB
testcase_08 AC 631 ms
53,924 KB
testcase_09 AC 627 ms
53,808 KB
testcase_10 AC 624 ms
53,932 KB
testcase_11 AC 646 ms
53,668 KB
testcase_12 AC 647 ms
53,520 KB
testcase_13 AC 632 ms
53,796 KB
testcase_14 AC 635 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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