結果

問題 No.289 数字を全て足そう
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-27 20:59:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 306 ms / 1,000 ms
コード長 182 bytes
コンパイル時間 8,344 ms
コンパイル使用メモリ 185,524 KB
実行使用メモリ 34,948 KB
最終ジャッジ日時 2024-04-27 14:52:44
合計ジャッジ時間 14,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
34,356 KB
testcase_01 AC 294 ms
34,236 KB
testcase_02 AC 296 ms
34,436 KB
testcase_03 AC 301 ms
34,564 KB
testcase_04 AC 295 ms
34,260 KB
testcase_05 AC 297 ms
34,312 KB
testcase_06 AC 296 ms
34,560 KB
testcase_07 AC 299 ms
34,492 KB
testcase_08 AC 301 ms
34,500 KB
testcase_09 AC 301 ms
34,288 KB
testcase_10 AC 294 ms
34,556 KB
testcase_11 AC 292 ms
34,372 KB
testcase_12 AC 296 ms
34,528 KB
testcase_13 AC 300 ms
33,764 KB
testcase_14 AC 299 ms
33,832 KB
testcase_15 AC 303 ms
34,496 KB
testcase_16 AC 306 ms
34,196 KB
testcase_17 AC 296 ms
34,632 KB
testcase_18 AC 306 ms
34,628 KB
testcase_19 AC 302 ms
34,368 KB
testcase_20 AC 301 ms
34,368 KB
testcase_21 AC 295 ms
34,228 KB
testcase_22 AC 299 ms
34,516 KB
testcase_23 AC 296 ms
34,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (245 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/

ソースコード

diff #

let convert (c:char) =
    match (int c) with
    | i when 48 <= i && i <= 57 -> i - 48
    | _ -> 0

let calc = Seq.map convert >> Seq.sum

stdin.ReadLine () |> calc |> printfn "%d"
0