結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー taktak
提出日時 2018-04-12 15:50:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 6,568 ms
コンパイル使用メモリ 185,756 KB
実行使用メモリ 58,036 KB
最終ジャッジ日時 2024-06-26 21:25:48
合計ジャッジ時間 13,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
33,640 KB
testcase_01 AC 329 ms
34,956 KB
testcase_02 AC 338 ms
33,824 KB
testcase_03 AC 336 ms
34,628 KB
testcase_04 AC 337 ms
34,328 KB
testcase_05 AC 383 ms
37,164 KB
testcase_06 AC 540 ms
45,732 KB
testcase_07 AC 750 ms
57,908 KB
testcase_08 AC 735 ms
58,036 KB
testcase_09 AC 707 ms
57,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (228 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 (|Safe|Out|) = function | 'o' -> Safe | _ -> Out

let counter =
    Array.fold (fun acc c -> 
        match c with
        | Safe -> (fst acc + 1, snd acc    )        
        | _    -> (fst acc    , snd acc + 1)) (0,0)
                   
let calP (safeCnt,outCnt) = 
    let sCnt = safeCnt |> float
    let oCnt = outCnt  |> float
    let cntSum = sCnt + oCnt 
    if cntSum > 0.0 then sCnt / cntSum * 100.0
    else                 0.0
    
let S = stdin.ReadLine().ToCharArray() 
let cnts = S |> counter

S
|> Array.scan (fun acc x -> 
    match x with
    | Safe -> (fst acc - 1, snd acc    )
    | Out  -> (fst acc    , snd acc - 1)) cnts
|> Array.take (S.Length)
|> Array.map (calP)
|> Array.iter(printfn "%f")
0