結果

問題 No.46 はじめのn歩
ユーザー 3qvwn3qvwn
提出日時 2019-07-01 23:01:23
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 1,275 ms
コンパイル使用メモリ 65,176 KB
実行使用メモリ 56,476 KB
最終ジャッジ日時 2024-06-09 22:42:18
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
53,992 KB
testcase_01 WA -
testcase_02 AC 554 ms
54,112 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 553 ms
54,140 KB
testcase_07 WA -
testcase_08 AC 554 ms
54,868 KB
testcase_09 AC 595 ms
54,300 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