結果

問題 No.289 数字を全て足そう
ユーザー 3qvwn3qvwn
提出日時 2019-07-03 14:22:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 586 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 62,716 KB
実行使用メモリ 55,868 KB
最終ジャッジ日時 2024-06-09 22:49:23
合計ジャッジ時間 15,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
54,072 KB
testcase_01 AC 536 ms
54,292 KB
testcase_02 AC 526 ms
53,744 KB
testcase_03 AC 527 ms
53,808 KB
testcase_04 AC 523 ms
54,140 KB
testcase_05 AC 542 ms
53,716 KB
testcase_06 AC 524 ms
54,140 KB
testcase_07 AC 544 ms
54,540 KB
testcase_08 AC 538 ms
54,304 KB
testcase_09 AC 526 ms
53,792 KB
testcase_10 AC 555 ms
54,200 KB
testcase_11 AC 542 ms
54,308 KB
testcase_12 AC 544 ms
55,520 KB
testcase_13 AC 547 ms
53,936 KB
testcase_14 AC 586 ms
55,544 KB
testcase_15 AC 545 ms
54,392 KB
testcase_16 AC 531 ms
54,372 KB
testcase_17 AC 533 ms
54,672 KB
testcase_18 AC 544 ms
55,480 KB
testcase_19 AC 533 ms
53,948 KB
testcase_20 AC 528 ms
54,724 KB
testcase_21 AC 530 ms
54,120 KB
testcase_22 AC 563 ms
55,300 KB
testcase_23 AC 543 ms
55,868 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