結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yukiccoyukicco
提出日時 2018-11-16 22:58:08
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 504 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 63,276 KB
実行使用メモリ 70,756 KB
最終ジャッジ日時 2024-06-09 22:18:06
合計ジャッジ時間 16,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
54,696 KB
testcase_01 AC 549 ms
54,304 KB
testcase_02 AC 586 ms
54,432 KB
testcase_03 AC 569 ms
54,568 KB
testcase_04 AC 566 ms
53,908 KB
testcase_05 AC 550 ms
54,572 KB
testcase_06 AC 605 ms
54,832 KB
testcase_07 AC 864 ms
55,708 KB
testcase_08 AC 2,227 ms
63,868 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

        as = inputs |> Enum.slice(1..-1) |> Enum.map(&(String.to_integer(&1)))

        IO.puts Enum.sum(as)

    end
end
0