結果

問題 No.289 数字を全て足そう
ユーザー gemmarogemmaro
提出日時 2020-03-30 21:08:36
言語 Elixir
(1.16.2)
結果
AC  
実行時間 602 ms / 1,000 ms
コード長 354 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 63,960 KB
実行使用メモリ 58,264 KB
最終ジャッジ日時 2024-06-09 23:04:38
合計ジャッジ時間 15,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 591 ms
54,876 KB
testcase_01 AC 550 ms
54,112 KB
testcase_02 AC 536 ms
54,252 KB
testcase_03 AC 551 ms
54,952 KB
testcase_04 AC 533 ms
53,980 KB
testcase_05 AC 542 ms
54,464 KB
testcase_06 AC 540 ms
53,992 KB
testcase_07 AC 550 ms
55,016 KB
testcase_08 AC 535 ms
55,120 KB
testcase_09 AC 538 ms
54,124 KB
testcase_10 AC 558 ms
54,276 KB
testcase_11 AC 543 ms
54,896 KB
testcase_12 AC 551 ms
55,764 KB
testcase_13 AC 551 ms
54,580 KB
testcase_14 AC 576 ms
54,952 KB
testcase_15 AC 555 ms
56,768 KB
testcase_16 AC 544 ms
54,604 KB
testcase_17 AC 574 ms
55,944 KB
testcase_18 AC 592 ms
58,264 KB
testcase_19 AC 588 ms
54,368 KB
testcase_20 AC 602 ms
55,048 KB
testcase_21 AC 557 ms
54,256 KB
testcase_22 AC 561 ms
55,240 KB
testcase_23 AC 583 ms
55,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> solve
    |> IO.puts()
  end

  defp solve(s) do
    s
    |> String.to_charlist()
    |> Enum.map(fn x ->
      [x]
      |> to_string
      |> (&(case Integer.parse(&1) do
              {n, _} -> n
              _ -> 0
            end)).()
    end)
    |> Enum.sum()
  end
end
0