結果

問題 No.480 合計
ユーザー TomoProgTomoProg
提出日時 2019-03-09 15:29:40
言語 Elixir
(1.18.1)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 1,031 ms
コンパイル使用メモリ 65,376 KB
実行使用メモリ 55,332 KB
最終ジャッジ日時 2024-12-31 02:40:57
合計ジャッジ時間 14,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
55,188 KB
testcase_01 AC 575 ms
53,868 KB
testcase_02 AC 516 ms
54,348 KB
testcase_03 AC 518 ms
54,600 KB
testcase_04 AC 521 ms
54,392 KB
testcase_05 AC 518 ms
54,300 KB
testcase_06 AC 533 ms
53,908 KB
testcase_07 AC 526 ms
55,332 KB
testcase_08 AC 521 ms
54,008 KB
testcase_09 AC 517 ms
54,100 KB
testcase_10 AC 527 ms
54,452 KB
testcase_11 AC 524 ms
53,900 KB
testcase_12 AC 539 ms
53,872 KB
testcase_13 AC 572 ms
54,176 KB
testcase_14 AC 543 ms
53,872 KB
testcase_15 AC 528 ms
54,612 KB
testcase_16 AC 549 ms
54,240 KB
testcase_17 AC 533 ms
54,944 KB
testcase_18 AC 565 ms
54,156 KB
testcase_19 AC 532 ms
54,024 KB
testcase_20 AC 538 ms
54,120 KB
testcase_21 AC 527 ms
54,932 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