結果

問題 No.480 合計
ユーザー yukiccoyukicco
提出日時 2018-11-16 22:28:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 64,512 KB
実行使用メモリ 55,740 KB
最終ジャッジ日時 2024-06-09 22:16:22
合計ジャッジ時間 14,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
53,940 KB
testcase_01 AC 615 ms
54,480 KB
testcase_02 AC 611 ms
54,120 KB
testcase_03 AC 590 ms
53,972 KB
testcase_04 AC 593 ms
54,476 KB
testcase_05 AC 544 ms
54,852 KB
testcase_06 AC 575 ms
54,132 KB
testcase_07 AC 577 ms
53,876 KB
testcase_08 AC 558 ms
54,100 KB
testcase_09 AC 577 ms
53,872 KB
testcase_10 AC 550 ms
55,740 KB
testcase_11 AC 563 ms
54,772 KB
testcase_12 AC 549 ms
53,988 KB
testcase_13 AC 577 ms
54,304 KB
testcase_14 AC 568 ms
55,064 KB
testcase_15 AC 559 ms
54,488 KB
testcase_16 AC 572 ms
55,112 KB
testcase_17 AC 562 ms
54,576 KB
testcase_18 AC 569 ms
55,044 KB
testcase_19 AC 558 ms
54,488 KB
testcase_20 AC 575 ms
54,832 KB
testcase_21 AC 562 ms
55,312 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 sum(n), do: sum(n, 1)
    defp sum(n, acc) do
        case n do
            1 -> acc
            _ -> sum(n - 1, acc + n)
        end
    end
    def main do

        inputs = getsAll(nil) |> String.split

        n = inputs |> Enum.at(0) |> String.to_integer

        IO.puts sum(n)

    end
end
0