結果

問題 No.656 ゴルフ
ユーザー taktak
提出日時 2018-03-06 09:45:40
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 14,674 ms
コンパイル使用メモリ 191,484 KB
実行使用メモリ 33,724 KB
最終ジャッジ日時 2024-09-15 08:16:07
合計ジャッジ時間 13,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
33,724 KB
testcase_01 AC 323 ms
33,352 KB
testcase_02 AC 338 ms
33,328 KB
testcase_03 AC 336 ms
33,484 KB
testcase_04 AC 324 ms
33,456 KB
testcase_05 AC 321 ms
33,336 KB
testcase_06 AC 322 ms
33,676 KB
testcase_07 AC 320 ms
33,680 KB
testcase_08 AC 329 ms
33,584 KB
testcase_09 AC 324 ms
33,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (584 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
open System.Collections
open System.Collections.Generic
open System.IO

[<EntryPoint>]
let main _ = 
    let S = Console.ReadLine().ToCharArray() 
            |> Array.map (fun c -> int c - int '0')

    let ans = 
        let under = S |> Array.sum
        let over  = S |> Array.where(fun x -> x = 0) 
                       |> Array.length
                       |> (*) 10
        under + over
    
    printfn "%i" ans

    0

0