結果

問題 No.345 最小チワワ問題
ユーザー guriceringuricerin
提出日時 2020-01-08 10:37:08
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 1,170 bytes
コンパイル時間 7,770 ms
コンパイル使用メモリ 188,860 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-11-23 02:27:58
合計ジャッジ時間 84,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 56 ms
32,384 KB
testcase_08 AC 56 ms
34,688 KB
testcase_09 AC 56 ms
58,728 KB
testcase_10 TLE -
testcase_11 AC 54 ms
34,560 KB
testcase_12 TLE -
testcase_13 AC 54 ms
32,512 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 55 ms
67,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (246 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.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

let solve() =
    let ss = readChars()
    let len = Array.length ss
    let mutable ans = Int32.MaxValue
    for i in 0 .. len - 1 do
        if ss.[i] = 'c' then
            let mutable w = 0
            let mutable j = i + 1
            while w < 2 && j < len do
                if ss.[j] = 'w' then w <- w + 1
            if w = 2 then ans <- min ans (i - j + 1)

    let ans =
        if ans = Int32.MaxValue then -1 else ans
    ans |> puts
    ()

[<EntryPoint>]
let main _ =
    try
        solve()
    with e -> printfn "%s" (e.ToString())
    writer.Close()
    0 // return an integer exit code
0