結果

問題 No.345 最小チワワ問題
ユーザー ichibanshiboriichibanshibori
提出日時 2016-04-29 23:44:43
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 16,588 ms
コンパイル使用メモリ 184,916 KB
実行使用メモリ 37,208 KB
最終ジャッジ日時 2024-10-04 19:28:16
合計ジャッジ時間 28,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
37,052 KB
testcase_01 AC 344 ms
37,044 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 347 ms
36,828 KB
testcase_05 AC 343 ms
36,784 KB
testcase_06 AC 343 ms
37,208 KB
testcase_07 AC 340 ms
36,324 KB
testcase_08 AC 341 ms
35,944 KB
testcase_09 AC 345 ms
35,920 KB
testcase_10 AC 342 ms
36,632 KB
testcase_11 AC 340 ms
36,196 KB
testcase_12 AC 343 ms
36,072 KB
testcase_13 AC 340 ms
35,688 KB
testcase_14 AC 343 ms
37,080 KB
testcase_15 AC 344 ms
36,824 KB
testcase_16 AC 342 ms
36,496 KB
testcase_17 WA -
testcase_18 AC 344 ms
36,820 KB
testcase_19 AC 342 ms
36,956 KB
testcase_20 AC 344 ms
36,884 KB
testcase_21 AC 340 ms
36,556 KB
testcase_22 AC 344 ms
36,700 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 344 ms
35,692 KB
testcase_29 AC 345 ms
37,176 KB
testcase_30 AC 343 ms
36,824 KB
testcase_31 AC 342 ms
35,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (496 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[^cw]*w[^cw]*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