結果

問題 No.480 合計
ユーザー shiroshiro
提出日時 2021-07-10 22:39:12
言語 Elixir
(1.16.2)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,201 ms
コンパイル使用メモリ 61,784 KB
実行使用メモリ 55,576 KB
最終ジャッジ日時 2024-07-02 02:53:24
合計ジャッジ時間 16,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 634 ms
53,892 KB
testcase_01 AC 645 ms
54,572 KB
testcase_02 AC 639 ms
53,748 KB
testcase_03 AC 643 ms
54,432 KB
testcase_04 AC 628 ms
53,760 KB
testcase_05 AC 631 ms
53,864 KB
testcase_06 AC 639 ms
54,636 KB
testcase_07 AC 631 ms
55,576 KB
testcase_08 AC 627 ms
54,736 KB
testcase_09 AC 662 ms
54,108 KB
testcase_10 AC 642 ms
54,468 KB
testcase_11 AC 630 ms
53,684 KB
testcase_12 AC 638 ms
53,984 KB
testcase_13 AC 642 ms
53,612 KB
testcase_14 AC 632 ms
53,784 KB
testcase_15 AC 630 ms
53,848 KB
testcase_16 AC 638 ms
53,612 KB
testcase_17 AC 645 ms
54,152 KB
testcase_18 AC 640 ms
54,216 KB
testcase_19 AC 635 ms
54,480 KB
testcase_20 AC 651 ms
55,276 KB
testcase_21 AC 641 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do
        IO.gets("")
        |> String.trim
        |> String.to_integer
        |> sumn
        |> IO.puts
    end
    defp sumn(n) do
        Enum.to_list(1..n) |> Enum.reduce(&(&1 + &2))
    end
end
0