結果
問題 | No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | gemmaro |
提出日時 | 2020-04-11 07:39:21 |
言語 | Elixir (1.16.2) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 1,064 ms |
コンパイル使用メモリ | 63,668 KB |
実行使用メモリ | 65,532 KB |
最終ジャッジ日時 | 2024-06-09 23:18:39 |
合計ジャッジ時間 | 14,972 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 644 ms
54,620 KB |
testcase_01 | AC | 643 ms
54,100 KB |
testcase_02 | AC | 645 ms
54,848 KB |
testcase_03 | AC | 625 ms
54,396 KB |
testcase_04 | AC | 625 ms
54,620 KB |
testcase_05 | AC | 654 ms
54,380 KB |
testcase_06 | AC | 685 ms
54,236 KB |
testcase_07 | AC | 987 ms
56,124 KB |
testcase_08 | AC | 2,577 ms
65,532 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
defmodule Main do def main do IO.read(:line) |> String.trim() |> String.to_integer() |> (&(1..&1)).() |> Enum.map(fn _ -> IO.read(:line) |> String.trim() |> String.to_integer() end) |> Enum.sum() |> IO.puts() end end