結果

問題 No.672 最長AB列
ユーザー taktak
提出日時 2018-06-08 07:41:33
言語 F#
(F# 4.0)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 6,781 ms
コンパイル使用メモリ 184,720 KB
実行使用メモリ 64,500 KB
最終ジャッジ日時 2024-06-30 10:37:51
合計ジャッジ時間 14,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,932 KB
testcase_01 AC 335 ms
34,944 KB
testcase_02 AC 335 ms
35,048 KB
testcase_03 AC 334 ms
34,672 KB
testcase_04 AC 335 ms
34,576 KB
testcase_05 AC 333 ms
35,080 KB
testcase_06 AC 336 ms
34,968 KB
testcase_07 AC 333 ms
34,820 KB
testcase_08 AC 334 ms
35,048 KB
testcase_09 AC 385 ms
64,500 KB
testcase_10 AC 376 ms
57,672 KB
testcase_11 AC 373 ms
57,668 KB
testcase_12 AC 369 ms
52,120 KB
testcase_13 AC 368 ms
52,884 KB
testcase_14 AC 370 ms
54,836 KB
testcase_15 AC 368 ms
52,664 KB
testcase_16 AC 367 ms
52,792 KB
testcase_17 AC 372 ms
57,744 KB
testcase_18 AC 363 ms
52,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (243 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 S = stdin.ReadLine().ToCharArray()

let ans = 
    let mem = System.Collections.Generic.Dictionary<int,int>()
    mem.Add(0,-1)
    S 
    |> Array.indexed
    |> Array.fold(fun (counter,maxLen) (idx,c) ->
        let counter = match c with |'A' -> counter + 1 | _  -> counter - 1
        match mem.TryGetValue counter with
        | true, lIdx -> (counter, max maxLen (idx - lIdx))
        | _          -> mem.Add(counter,idx); (counter, maxLen)) (0,0)
    |> fun (counter,maxLen) -> maxLen
    
ans |> printfn "%i"
0