結果

問題 No.345 最小チワワ問題
ユーザー chike_pluschike_plus
提出日時 2020-03-18 07:36:53
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 15,052 ms
コンパイル使用メモリ 186,168 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-05-08 02:06:26
合計ジャッジ時間 15,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

  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) ->  t1 > n )
      |> function
        | Some (x1,x2)  -> x2 - n
        | None          -> -1
  )
  |> Seq.min
  |> stdout.WriteLine

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