結果

問題 No.289 数字を全て足そう
ユーザー 3qvwn3qvwn
提出日時 2019-07-03 14:22:07
言語 Elixir
(1.18.1)
結果
AC  
実行時間 561 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 63,788 KB
実行使用メモリ 56,648 KB
最終ジャッジ日時 2024-12-31 03:14:35
合計ジャッジ時間 15,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
54,984 KB
testcase_01 AC 561 ms
54,156 KB
testcase_02 AC 554 ms
54,012 KB
testcase_03 AC 555 ms
54,420 KB
testcase_04 AC 558 ms
54,088 KB
testcase_05 AC 558 ms
54,124 KB
testcase_06 AC 522 ms
54,536 KB
testcase_07 AC 535 ms
54,836 KB
testcase_08 AC 530 ms
55,052 KB
testcase_09 AC 528 ms
53,900 KB
testcase_10 AC 531 ms
54,036 KB
testcase_11 AC 531 ms
54,416 KB
testcase_12 AC 541 ms
55,576 KB
testcase_13 AC 529 ms
54,712 KB
testcase_14 AC 534 ms
56,648 KB
testcase_15 AC 532 ms
55,352 KB
testcase_16 AC 525 ms
54,312 KB
testcase_17 AC 538 ms
54,776 KB
testcase_18 AC 546 ms
55,564 KB
testcase_19 AC 539 ms
54,588 KB
testcase_20 AC 538 ms
54,724 KB
testcase_21 AC 520 ms
53,912 KB
testcase_22 AC 537 ms
56,248 KB
testcase_23 AC 538 ms
55,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("") |> String.codepoints |> Enum.filter(&String.match?(&1, ~r/[0-9]/)) |> Enum.map(&String.to_integer/1) |> Enum.sum |> IO.puts
  end
end
0