結果

問題 No.289 数字を全て足そう
ユーザー yukiccoyukicco
提出日時 2018-11-18 03:04:54
言語 Elixir
(1.16.2)
結果
AC  
実行時間 606 ms / 1,000 ms
コード長 271 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 63,752 KB
実行使用メモリ 56,404 KB
最終ジャッジ日時 2024-06-09 22:22:09
合計ジャッジ時間 15,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 606 ms
54,264 KB
testcase_01 AC 559 ms
55,360 KB
testcase_02 AC 560 ms
54,228 KB
testcase_03 AC 554 ms
54,376 KB
testcase_04 AC 551 ms
54,372 KB
testcase_05 AC 553 ms
54,796 KB
testcase_06 AC 553 ms
55,784 KB
testcase_07 AC 567 ms
55,080 KB
testcase_08 AC 549 ms
54,368 KB
testcase_09 AC 542 ms
54,664 KB
testcase_10 AC 545 ms
54,924 KB
testcase_11 AC 561 ms
56,404 KB
testcase_12 AC 568 ms
54,648 KB
testcase_13 AC 554 ms
54,844 KB
testcase_14 AC 571 ms
54,128 KB
testcase_15 AC 579 ms
54,992 KB
testcase_16 AC 583 ms
55,568 KB
testcase_17 AC 571 ms
54,068 KB
testcase_18 AC 565 ms
54,224 KB
testcase_19 AC 558 ms
54,992 KB
testcase_20 AC 559 ms
55,400 KB
testcase_21 AC 556 ms
55,140 KB
testcase_22 AC 567 ms
54,900 KB
testcase_23 AC 568 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do

        input = IO.binread(:all)

        sum = to_charlist(input)
            |> Stream.filter(&(48 <= &1 and &1 <= 57))
            |> Stream.map(&(String.to_integer(<<&1>>)))
            |> Enum.sum

        IO.puts sum

    end
end
0