結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yukiccoyukicco
提出日時 2018-11-16 22:56:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,562 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 65,932 KB
実行使用メモリ 232,556 KB
最終ジャッジ日時 2024-06-09 22:17:17
合計ジャッジ時間 20,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
55,388 KB
testcase_01 AC 546 ms
54,940 KB
testcase_02 AC 561 ms
55,308 KB
testcase_03 AC 560 ms
55,764 KB
testcase_04 AC 569 ms
54,896 KB
testcase_05 AC 563 ms
55,904 KB
testcase_06 AC 604 ms
55,668 KB
testcase_07 AC 716 ms
66,516 KB
testcase_08 AC 1,143 ms
141,248 KB
testcase_09 AC 1,080 ms
123,136 KB
testcase_10 AC 1,232 ms
181,244 KB
testcase_11 AC 1,298 ms
182,336 KB
testcase_12 AC 1,249 ms
194,652 KB
testcase_13 AC 1,320 ms
191,184 KB
testcase_14 AC 1,436 ms
194,764 KB
testcase_15 AC 1,278 ms
207,872 KB
testcase_16 AC 1,562 ms
232,556 KB
testcase_17 AC 545 ms
54,384 KB
testcase_18 AC 549 ms
55,824 KB
権限があれば一括ダウンロードができます

ソースコード

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