結果

問題 No.345 最小チワワ問題
ユーザー ichibanshiboriichibanshibori
提出日時 2016-04-30 00:30:05
言語 F#
(F# 4.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 12,080 ms
コンパイル使用メモリ 191,932 KB
実行使用メモリ 36,988 KB
最終ジャッジ日時 2024-09-25 11:44:30
合計ジャッジ時間 19,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
36,980 KB
testcase_01 AC 344 ms
36,820 KB
testcase_02 AC 345 ms
36,276 KB
testcase_03 AC 347 ms
35,924 KB
testcase_04 AC 345 ms
36,988 KB
testcase_05 AC 344 ms
35,912 KB
testcase_06 AC 345 ms
36,860 KB
testcase_07 AC 348 ms
36,708 KB
testcase_08 AC 345 ms
36,964 KB
testcase_09 AC 345 ms
36,808 KB
testcase_10 AC 349 ms
36,048 KB
testcase_11 AC 345 ms
36,968 KB
testcase_12 AC 349 ms
36,716 KB
testcase_13 AC 346 ms
36,460 KB
testcase_14 AC 345 ms
36,976 KB
testcase_15 AC 347 ms
36,720 KB
testcase_16 AC 345 ms
36,300 KB
testcase_17 AC 344 ms
36,052 KB
testcase_18 AC 346 ms
36,292 KB
testcase_19 AC 346 ms
36,300 KB
testcase_20 AC 345 ms
36,864 KB
testcase_21 AC 345 ms
36,968 KB
testcase_22 AC 345 ms
36,604 KB
testcase_23 AC 346 ms
36,852 KB
testcase_24 AC 345 ms
36,256 KB
testcase_25 AC 345 ms
36,980 KB
testcase_26 AC 345 ms
36,052 KB
testcase_27 AC 345 ms
36,560 KB
testcase_28 AC 345 ms
36,692 KB
testcase_29 AC 345 ms
36,860 KB
testcase_30 AC 344 ms
36,972 KB
testcase_31 AC 345 ms
36,644 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (296 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:string) =
    seq { for i in 0..(str.Length - 3) -> pattern.Match(str, i) } |>
    Seq.choose (function m when m.Success -> Some m.Length | _ -> None) |>
    (fun s -> if Seq.isEmpty s then -1 else Seq.min s)

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