結果

問題 No.289 数字を全て足そう
ユーザー keidenkeiden
提出日時 2024-09-20 18:17:36
言語 F#
(F# 4.0)
結果
AC  
実行時間 339 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 6,305 ms
コンパイル使用メモリ 184,860 KB
実行使用メモリ 35,212 KB
最終ジャッジ日時 2024-09-20 18:18:13
合計ジャッジ時間 15,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
34,280 KB
testcase_01 AC 300 ms
34,404 KB
testcase_02 AC 304 ms
34,396 KB
testcase_03 AC 326 ms
34,404 KB
testcase_04 AC 325 ms
33,856 KB
testcase_05 AC 315 ms
33,632 KB
testcase_06 AC 314 ms
33,476 KB
testcase_07 AC 339 ms
34,320 KB
testcase_08 AC 322 ms
34,464 KB
testcase_09 AC 305 ms
34,532 KB
testcase_10 AC 305 ms
34,400 KB
testcase_11 AC 326 ms
34,328 KB
testcase_12 AC 313 ms
34,484 KB
testcase_13 AC 323 ms
34,580 KB
testcase_14 AC 319 ms
33,928 KB
testcase_15 AC 333 ms
33,684 KB
testcase_16 AC 313 ms
33,912 KB
testcase_17 AC 317 ms
34,708 KB
testcase_18 AC 332 ms
34,464 KB
testcase_19 AC 313 ms
34,464 KB
testcase_20 AC 309 ms
34,316 KB
testcase_21 AC 310 ms
34,408 KB
testcase_22 AC 338 ms
34,480 KB
testcase_23 AC 314 ms
35,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (221 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 #

open System

[<EntryPoint>]
let yuki289 argv : int =
    ()
    |> Console.ReadLine
    |> Seq.fold (fun n c -> n + if Char.IsDigit c then int c - int '0' else 0) 0
    |> printfn "%i"
    0
0