結果

問題 No.480 合計
ユーザー shiroshiro
提出日時 2019-05-30 18:53:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 62,204 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-09 22:36:17
合計ジャッジ時間 14,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
53,720 KB
testcase_01 AC 546 ms
54,232 KB
testcase_02 AC 554 ms
53,928 KB
testcase_03 AC 540 ms
53,672 KB
testcase_04 AC 542 ms
53,796 KB
testcase_05 AC 536 ms
53,940 KB
testcase_06 AC 556 ms
54,672 KB
testcase_07 AC 559 ms
54,012 KB
testcase_08 AC 569 ms
53,808 KB
testcase_09 AC 562 ms
54,408 KB
testcase_10 AC 546 ms
53,672 KB
testcase_11 AC 550 ms
53,928 KB
testcase_12 AC 535 ms
53,928 KB
testcase_13 AC 551 ms
53,812 KB
testcase_14 AC 564 ms
54,408 KB
testcase_15 AC 558 ms
53,928 KB
testcase_16 AC 542 ms
54,008 KB
testcase_17 AC 548 ms
53,672 KB
testcase_18 AC 545 ms
53,672 KB
testcase_19 AC 539 ms
53,672 KB
testcase_20 AC 562 ms
54,248 KB
testcase_21 AC 558 ms
53,928 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