結果
問題 | No.289 数字を全て足そう |
ユーザー |
|
提出日時 | 2018-01-12 21:47:03 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 341 bytes |
コンパイル時間 | 10,305 ms |
コンパイル使用メモリ | 179,964 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 00:49:43 |
合計ジャッジ時間 | 4,309 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Control.Applicative ((<$>)) import Data.Char (isDigit, digitToInt) import Data.ByteString.Char8 (ByteString) import qualified Data.ByteString.Char8 as B main :: IO () main = do solve <$> B.getLine >>= print solve :: ByteString -> Int solve = B.foldl' f 0 where f x c | isDigit c = x + digitToInt c | otherwise = x