結果

問題 No.46 はじめのn歩
ユーザー asatakeasatake
提出日時 2018-08-13 09:42:32
言語 Elixir
(1.16.2)
結果
AC  
実行時間 574 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 62,720 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-06-09 22:11:12
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
53,860 KB
testcase_01 AC 574 ms
53,924 KB
testcase_02 AC 565 ms
54,088 KB
testcase_03 AC 559 ms
54,352 KB
testcase_04 AC 562 ms
54,248 KB
testcase_05 AC 573 ms
53,868 KB
testcase_06 AC 558 ms
54,264 KB
testcase_07 AC 569 ms
53,952 KB
testcase_08 AC 567 ms
54,452 KB
testcase_09 AC 555 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main() do
    [a, b] = IO.gets("") |> String.trim |> String.split
    IO.puts :math.ceil(String.to_integer(b) / String.to_integer(a)) |> trunc
  end
end
0