結果

問題 No.46 はじめのn歩
ユーザー yukiccoyukicco
提出日時 2018-11-17 01:17:04
言語 Elixir
(1.16.2)
結果
AC  
実行時間 3,858 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 62,640 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-06-09 22:19:08
合計ジャッジ時間 11,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
53,544 KB
testcase_01 AC 534 ms
53,904 KB
testcase_02 AC 552 ms
53,800 KB
testcase_03 AC 538 ms
54,548 KB
testcase_04 AC 533 ms
54,064 KB
testcase_05 AC 522 ms
53,684 KB
testcase_06 AC 534 ms
53,928 KB
testcase_07 AC 562 ms
54,032 KB
testcase_08 AC 3,858 ms
53,288 KB
testcase_09 AC 638 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def nStep(step, goal), do: nStep(step, goal, step)
    defp nStep(step, goal, acc) do
        cond do
            acc >= goal -> div(acc, step)
            true -> nStep(step, goal, acc + step)
        end
    end
    def main do

        inputs = IO.binread(:all) |> String.split

        [a, b] = inputs |> Enum.map(&(String.to_integer(&1)))

        IO.puts nStep(a, b)

    end
end
0