結果

問題 No.345 最小チワワ問題
ユーザー chike_pluschike_plus
提出日時 2020-03-18 07:55:50
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 718 bytes
コンパイル時間 15,396 ms
コンパイル使用メモリ 186,820 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-05-08 02:06:50
合計ジャッジ時間 20,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
29,384 KB
testcase_01 AC 58 ms
29,688 KB
testcase_02 AC 60 ms
29,568 KB
testcase_03 AC 58 ms
29,568 KB
testcase_04 AC 57 ms
29,824 KB
testcase_05 AC 58 ms
29,440 KB
testcase_06 AC 58 ms
29,568 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 60 ms
29,696 KB
testcase_11 RE -
testcase_12 AC 59 ms
31,232 KB
testcase_13 RE -
testcase_14 AC 59 ms
29,672 KB
testcase_15 AC 58 ms
29,312 KB
testcase_16 AC 60 ms
29,800 KB
testcase_17 AC 61 ms
29,560 KB
testcase_18 AC 62 ms
29,440 KB
testcase_19 AC 64 ms
29,680 KB
testcase_20 AC 64 ms
29,432 KB
testcase_21 AC 59 ms
30,976 KB
testcase_22 AC 58 ms
29,312 KB
testcase_23 AC 58 ms
29,824 KB
testcase_24 AC 59 ms
29,312 KB
testcase_25 AC 61 ms
29,312 KB
testcase_26 AC 61 ms
29,680 KB
testcase_27 AC 59 ms
29,568 KB
testcase_28 AC 58 ms
30,968 KB
testcase_29 AC 61 ms
29,680 KB
testcase_30 AC 61 ms
29,680 KB
testcase_31 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (516 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 #

let ``No.345 最小チワワ問題``() =
  
  let s = stdin.ReadLine()
  let Windexes =
    s
    |> Seq.mapi   (fun i c -> if c.Equals( 'w' ) then i + 1 else -1 )
    |> Seq.filter (fun i -> i >= 0)
    |> Seq.pairwise

  let res = 
    s
    |> Seq.mapi   (fun i c -> if c.Equals( 'c' ) then i else -1 )
    |> Seq.filter (fun i -> i >= 0)
    |> Seq.map ( fun n ->
        Windexes
        |> Seq.tryFind (fun (t1, t2) ->  n < t1 )
        |> function
          | Some (x1,x2)  -> x2 - n
          | None          -> -1
    )
  res
  |> Seq.max
  |> function
    | -1 -> -1
    |  _ -> res 
            |> Seq.filter( fun n -> n > 0)
            |> Seq.min
  |> stdout.WriteLine


``No.345 最小チワワ問題``()
0