結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー shiroshiro
提出日時 2019-06-06 13:30:53
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 258 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 64,456 KB
実行使用メモリ 54,932 KB
最終ジャッジ日時 2024-06-09 22:43:06
合計ジャッジ時間 14,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
54,288 KB
testcase_01 AC 561 ms
54,552 KB
testcase_02 AC 554 ms
53,748 KB
testcase_03 AC 553 ms
54,096 KB
testcase_04 AC 540 ms
53,932 KB
testcase_05 AC 569 ms
54,064 KB
testcase_06 AC 607 ms
54,064 KB
testcase_07 AC 869 ms
54,528 KB
testcase_08 AC 2,153 ms
54,596 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.gets("") |> String.trim |> String.to_integer
    Enum.reduce(1..n, 0, fn _x, acc -> sum(acc) end)
    |> IO.puts
  end
  def sum(acc) do
    n = IO.gets("") |> String.trim |> String.to_integer
    acc + n
  end
end
0