結果

問題 No.672 最長AB列
ユーザー taktak
提出日時 2018-06-08 08:18:49
言語 F#
(F# 4.0)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 6,819 ms
コンパイル使用メモリ 201,416 KB
実行使用メモリ 79,524 KB
最終ジャッジ日時 2024-06-30 10:37:25
合計ジャッジ時間 17,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,008 KB
testcase_01 AC 342 ms
34,196 KB
testcase_02 AC 340 ms
34,252 KB
testcase_03 AC 341 ms
34,068 KB
testcase_04 AC 342 ms
33,872 KB
testcase_05 AC 342 ms
33,876 KB
testcase_06 AC 341 ms
33,960 KB
testcase_07 AC 342 ms
34,076 KB
testcase_08 AC 341 ms
34,260 KB
testcase_09 AC 816 ms
79,524 KB
testcase_10 AC 717 ms
74,408 KB
testcase_11 AC 714 ms
73,916 KB
testcase_12 AC 489 ms
55,572 KB
testcase_13 AC 498 ms
55,140 KB
testcase_14 AC 493 ms
55,132 KB
testcase_15 AC 496 ms
55,128 KB
testcase_16 AC 488 ms
55,152 KB
testcase_17 AC 701 ms
74,024 KB
testcase_18 AC 394 ms
55,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 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 #

stdin.ReadLine().ToCharArray()
|> Array.indexed
|> Array.fold(fun (mem,counter,maxLen) (idx,c) ->
    let counter = match c with |'A' -> counter + 1 | _  -> counter - 1        
    match Map.containsKey counter mem with
    | true ->  (mem, counter, (max maxLen (idx - mem.[counter])))
    | _    ->  ((mem.Add(counter,idx)), counter, maxLen)) (Map.ofList[0,-1],0,0)    
|> fun (_,_,maxLen) -> printfn "%i" maxLen
0