結果

問題 No.289 数字を全て足そう
ユーザー yukiccoyukicco
提出日時 2018-11-17 22:11:24
言語 Elixir
(1.16.2)
結果
AC  
実行時間 609 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 62,600 KB
実行使用メモリ 56,124 KB
最終ジャッジ日時 2024-06-09 22:21:01
合計ジャッジ時間 16,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
54,652 KB
testcase_01 AC 549 ms
54,376 KB
testcase_02 AC 547 ms
55,392 KB
testcase_03 AC 562 ms
55,388 KB
testcase_04 AC 547 ms
54,736 KB
testcase_05 AC 562 ms
55,092 KB
testcase_06 AC 561 ms
54,504 KB
testcase_07 AC 551 ms
55,104 KB
testcase_08 AC 553 ms
54,764 KB
testcase_09 AC 550 ms
55,152 KB
testcase_10 AC 557 ms
54,592 KB
testcase_11 AC 557 ms
54,500 KB
testcase_12 AC 577 ms
56,124 KB
testcase_13 AC 564 ms
54,652 KB
testcase_14 AC 594 ms
55,556 KB
testcase_15 AC 572 ms
55,200 KB
testcase_16 AC 572 ms
55,648 KB
testcase_17 AC 565 ms
55,812 KB
testcase_18 AC 605 ms
55,240 KB
testcase_19 AC 564 ms
54,568 KB
testcase_20 AC 564 ms
54,460 KB
testcase_21 AC 561 ms
54,708 KB
testcase_22 AC 601 ms
54,780 KB
testcase_23 AC 609 ms
55,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do

        input = IO.binread(:all)

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

        IO.puts sum

    end
end
0