結果
問題 | No.289 数字を全て足そう |
ユーザー | vain0 |
提出日時 | 2015-10-16 22:37:12 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 338 ms / 1,000 ms |
コード長 | 294 bytes |
コンパイル時間 | 12,887 ms |
コンパイル使用メモリ | 191,032 KB |
実行使用メモリ | 34,852 KB |
最終ジャッジ日時 | 2024-10-07 20:15:41 |
合計ジャッジ時間 | 21,888 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (462 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
open System open System.Text open System.Collections.Generic let solve s = s |> Seq.choose (fun c -> if Char.IsDigit c then c |> Char.GetNumericValue |> int |> Some else None) |> Seq.sum [<EntryPoint>] let main argv = let s = Console.ReadLine() printfn "%d" <| solve s //exit 0