結果

問題 No.480 合計
ユーザー TomoProgTomoProg
提出日時 2019-03-09 15:29:40
言語 Elixir
(1.16.2)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 65,664 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-06-09 22:26:23
合計ジャッジ時間 14,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
54,756 KB
testcase_01 AC 543 ms
54,492 KB
testcase_02 AC 558 ms
54,156 KB
testcase_03 AC 560 ms
54,756 KB
testcase_04 AC 542 ms
54,604 KB
testcase_05 AC 554 ms
53,728 KB
testcase_06 AC 556 ms
55,356 KB
testcase_07 AC 548 ms
54,728 KB
testcase_08 AC 536 ms
53,868 KB
testcase_09 AC 555 ms
54,808 KB
testcase_10 AC 551 ms
54,116 KB
testcase_11 AC 573 ms
54,120 KB
testcase_12 AC 556 ms
53,752 KB
testcase_13 AC 549 ms
54,348 KB
testcase_14 AC 550 ms
54,196 KB
testcase_15 AC 564 ms
54,276 KB
testcase_16 AC 553 ms
55,400 KB
testcase_17 AC 553 ms
54,324 KB
testcase_18 AC 552 ms
54,864 KB
testcase_19 AC 551 ms
54,556 KB
testcase_20 AC 558 ms
54,328 KB
testcase_21 AC 554 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    no = IO.gets("") |> String.replace("\n", "") |> String.to_integer
    IO.puts Enum.sum(1..no)
  end
end
0