結果

問題 No.46 はじめのn歩
ユーザー 3qvwn3qvwn
提出日時 2019-07-01 23:33:26
言語 Elixir
(1.18.1)
結果
AC  
実行時間 577 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 63,148 KB
実行使用メモリ 55,632 KB
最終ジャッジ日時 2024-12-31 03:03:27
合計ジャッジ時間 7,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
54,680 KB
testcase_01 AC 577 ms
55,132 KB
testcase_02 AC 557 ms
54,040 KB
testcase_03 AC 571 ms
54,520 KB
testcase_04 AC 563 ms
54,732 KB
testcase_05 AC 567 ms
55,632 KB
testcase_06 AC 564 ms
54,496 KB
testcase_07 AC 561 ms
54,544 KB
testcase_08 AC 551 ms
54,688 KB
testcase_09 AC 560 ms
54,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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