結果

問題 No.480 合計
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 00:10:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 63,228 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-06-09 22:44:55
合計ジャッジ時間 14,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
55,168 KB
testcase_01 AC 571 ms
54,444 KB
testcase_02 AC 537 ms
54,304 KB
testcase_03 AC 557 ms
53,756 KB
testcase_04 AC 566 ms
54,404 KB
testcase_05 AC 547 ms
54,452 KB
testcase_06 AC 552 ms
54,216 KB
testcase_07 AC 552 ms
54,632 KB
testcase_08 AC 560 ms
54,008 KB
testcase_09 AC 563 ms
54,600 KB
testcase_10 AC 545 ms
54,016 KB
testcase_11 AC 549 ms
54,664 KB
testcase_12 AC 548 ms
53,856 KB
testcase_13 AC 547 ms
54,352 KB
testcase_14 AC 560 ms
54,472 KB
testcase_15 AC 560 ms
54,156 KB
testcase_16 AC 555 ms
54,608 KB
testcase_17 AC 548 ms
54,316 KB
testcase_18 AC 560 ms
54,352 KB
testcase_19 AC 570 ms
54,900 KB
testcase_20 AC 551 ms
53,980 KB
testcase_21 AC 556 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.gets("") |> String.trim |> String.to_integer
    Enum.sum(0..n) |> IO.puts
  end
end
0