結果

問題 No.46 はじめのn歩
ユーザー 3qvwn3qvwn
提出日時 2019-07-01 23:01:23
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 54,612 KB
実行使用メモリ 50,280 KB
最終ジャッジ日時 2023-08-29 23:28:45
合計ジャッジ時間 8,235 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
49,824 KB
testcase_01 WA -
testcase_02 AC 603 ms
49,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 611 ms
49,284 KB
testcase_07 WA -
testcase_08 AC 608 ms
50,280 KB
testcase_09 AC 605 ms
49,772 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(b,a)
  end
end
0