結果

問題 No.345 最小チワワ問題
ユーザー ichibanshiboriichibanshibori
提出日時 2016-04-29 23:51:23
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 13,359 ms
コンパイル使用メモリ 185,492 KB
実行使用メモリ 36,664 KB
最終ジャッジ日時 2024-10-04 19:33:42
合計ジャッジ時間 22,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
36,664 KB
testcase_01 AC 300 ms
35,852 KB
testcase_02 AC 304 ms
35,868 KB
testcase_03 AC 303 ms
35,740 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 295 ms
35,664 KB
testcase_08 AC 295 ms
35,532 KB
testcase_09 AC 293 ms
35,400 KB
testcase_10 AC 299 ms
36,124 KB
testcase_11 AC 294 ms
35,780 KB
testcase_12 AC 294 ms
35,668 KB
testcase_13 AC 293 ms
35,920 KB
testcase_14 WA -
testcase_15 AC 295 ms
36,108 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 301 ms
36,252 KB
testcase_20 AC 300 ms
36,112 KB
testcase_21 AC 295 ms
35,788 KB
testcase_22 AC 296 ms
35,732 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 292 ms
35,792 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 295 ms
35,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (299 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 { for i in 0..(m.Count - 1) -> m.[i].Length} |> Seq.min

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