結果

問題 No.480 合計
ユーザー asumasum
提出日時 2024-04-08 10:30:17
言語 Elixir
(1.16.2)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 62,372 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-10-01 05:03:55
合計ジャッジ時間 13,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
53,796 KB
testcase_01 AC 526 ms
53,876 KB
testcase_02 AC 520 ms
53,748 KB
testcase_03 AC 519 ms
53,796 KB
testcase_04 AC 521 ms
53,748 KB
testcase_05 AC 523 ms
53,572 KB
testcase_06 AC 522 ms
53,952 KB
testcase_07 AC 523 ms
53,676 KB
testcase_08 AC 515 ms
53,680 KB
testcase_09 AC 516 ms
53,756 KB
testcase_10 AC 522 ms
53,568 KB
testcase_11 AC 517 ms
53,552 KB
testcase_12 AC 521 ms
54,060 KB
testcase_13 AC 521 ms
53,936 KB
testcase_14 AC 530 ms
53,680 KB
testcase_15 AC 520 ms
53,884 KB
testcase_16 AC 519 ms
53,680 KB
testcase_17 AC 523 ms
53,776 KB
testcase_18 AC 513 ms
53,816 KB
testcase_19 AC 518 ms
53,912 KB
testcase_20 AC 513 ms
53,812 KB
testcase_21 AC 528 ms
53,680 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