結果

問題 No.46 はじめのn歩
ユーザー yoshirawyoshiraw
提出日時 2018-12-28 15:27:46
言語 Elixir
(1.16.2)
結果
AC  
実行時間 566 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 65,324 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-06-09 22:24:28
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
53,672 KB
testcase_01 AC 553 ms
53,952 KB
testcase_02 AC 566 ms
53,692 KB
testcase_03 AC 545 ms
53,800 KB
testcase_04 AC 554 ms
53,804 KB
testcase_05 AC 546 ms
53,744 KB
testcase_06 AC 547 ms
54,068 KB
testcase_07 AC 553 ms
54,436 KB
testcase_08 AC 547 ms
53,880 KB
testcase_09 AC 551 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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