結果

問題 No.345 最小チワワ問題
ユーザー ichibanshiboriichibanshibori
提出日時 2016-04-30 00:16:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 16,122 ms
コンパイル使用メモリ 193,476 KB
実行使用メモリ 37,032 KB
最終ジャッジ日時 2024-09-25 11:43:36
合計ジャッジ時間 23,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
36,252 KB
testcase_01 AC 345 ms
36,120 KB
testcase_02 AC 343 ms
36,512 KB
testcase_03 AC 345 ms
36,380 KB
testcase_04 AC 344 ms
36,216 KB
testcase_05 AC 345 ms
36,368 KB
testcase_06 AC 348 ms
36,516 KB
testcase_07 AC 341 ms
35,772 KB
testcase_08 AC 339 ms
35,652 KB
testcase_09 AC 339 ms
36,280 KB
testcase_10 AC 345 ms
36,116 KB
testcase_11 AC 340 ms
35,644 KB
testcase_12 AC 340 ms
35,768 KB
testcase_13 AC 339 ms
36,020 KB
testcase_14 AC 346 ms
36,140 KB
testcase_15 AC 350 ms
36,240 KB
testcase_16 AC 344 ms
35,992 KB
testcase_17 AC 345 ms
36,096 KB
testcase_18 AC 348 ms
36,276 KB
testcase_19 AC 347 ms
36,368 KB
testcase_20 AC 345 ms
35,984 KB
testcase_21 AC 341 ms
35,732 KB
testcase_22 AC 345 ms
36,612 KB
testcase_23 AC 344 ms
36,220 KB
testcase_24 AC 348 ms
36,504 KB
testcase_25 AC 345 ms
36,252 KB
testcase_26 AC 347 ms
36,124 KB
testcase_27 AC 347 ms
37,032 KB
testcase_28 AC 340 ms
36,284 KB
testcase_29 AC 352 ms
36,132 KB
testcase_30 AC 347 ms
36,220 KB
testcase_31 AC 342 ms
36,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (288 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.Text.RegularExpressions

let pattern = new Regex(@"c.*?w.*?w")
let searchCww str =
    pattern.Matches(str) |>
    function m when m.Count = 0 -> -1
           | m -> seq { 0..(str.Length - 3) } |>
                  Seq.map (fun i -> pattern.Match(str, i)) |>
                  Seq.choose (function m when m.Success -> Some m.Length | _ -> None) |>
                  Seq.min

Console.ReadLine () |> searchCww |> printfn "%d"
0