結果

問題 No.480 合計
ユーザー asumasum
提出日時 2024-04-08 10:31:48
言語 Elixir
(1.16.2)
結果
AC  
実行時間 706 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 1,451 ms
コンパイル使用メモリ 61,272 KB
実行使用メモリ 55,928 KB
最終ジャッジ日時 2024-06-10 01:52:43
合計ジャッジ時間 17,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 668 ms
55,076 KB
testcase_01 AC 635 ms
55,008 KB
testcase_02 AC 664 ms
55,036 KB
testcase_03 AC 633 ms
54,972 KB
testcase_04 AC 631 ms
54,908 KB
testcase_05 AC 658 ms
54,916 KB
testcase_06 AC 635 ms
55,256 KB
testcase_07 AC 668 ms
54,864 KB
testcase_08 AC 677 ms
55,928 KB
testcase_09 AC 676 ms
55,256 KB
testcase_10 AC 695 ms
54,416 KB
testcase_11 AC 695 ms
54,804 KB
testcase_12 AC 706 ms
54,248 KB
testcase_13 AC 668 ms
54,476 KB
testcase_14 AC 689 ms
54,116 KB
testcase_15 AC 677 ms
54,540 KB
testcase_16 AC 691 ms
54,408 KB
testcase_17 AC 649 ms
54,964 KB
testcase_18 AC 661 ms
54,696 KB
testcase_19 AC 648 ms
54,496 KB
testcase_20 AC 672 ms
54,472 KB
testcase_21 AC 655 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
  	alias String ,as: S
    alias Enum ,as: E

    n = S.to_integer(S.trim(IO.gets("")))
    IO.puts(E.reduce(1..n,&(&1 + &2)))
  end
end

0