結果
| 問題 |
No.667 Mice's Luck(ネズミ達の運)
|
| コンテスト | |
| ユーザー |
tak
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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/
ソースコード
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")
tak