結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー yukicco
提出日時 2018-11-16 22:37:53
言語 Elixir
(1.19.5)
コンパイル:
elixirc _filename_
実行:
elixir -e Main.main
結果
AC  
実行時間 344 ms / 1,000 ms
コード長 561 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 865 ms
コンパイル使用メモリ 72,448 KB
実行使用メモリ 63,684 KB
最終ジャッジ日時 2026-06-04 13:47:08
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: 2..-1 has a default step of -1, please write 2..-1//-1 instead
  Main.exs:16: Main.main/0

ソースコード

diff #
raw source code

defmodule Main do
    def getsAll(device \\ :stdio, prompt), do: getsAll(device, prompt, "")
    defp getsAll(device, prompt, input) do
        x = IO.gets(device, prompt)
        case x do
            {:error, _} -> x
            :eof -> input
            _ -> getsAll(device, prompt, input <> x)
        end
    end
    def main do

        inputs = getsAll(nil) |> String.split

        [a, b] = inputs |> Enum.slice(0..1) |> Enum.map(&(String.to_integer(&1)))
        s = inputs |> Enum.slice(2..-1)

        IO.puts Enum.join([a + b, s], " ")

    end
end
0