結果

問題 No.46 はじめのn歩
ユーザー yukiccoyukicco
提出日時 2018-11-17 01:26:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 539 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 1,190 ms
コンパイル使用メモリ 63,696 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-09 22:18:30
合計ジャッジ時間 7,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
53,892 KB
testcase_01 AC 537 ms
54,188 KB
testcase_02 AC 536 ms
53,908 KB
testcase_03 AC 531 ms
54,072 KB
testcase_04 AC 529 ms
53,804 KB
testcase_05 AC 527 ms
53,752 KB
testcase_06 AC 528 ms
54,196 KB
testcase_07 AC 531 ms
54,288 KB
testcase_08 AC 539 ms
53,944 KB
testcase_09 AC 539 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do

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

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

        IO.puts div(b, a) + if(rem(b, a) == 0, do: 0, else: 1)

    end
end
0