atcoder#AGC034B. [AGC034B] ABC

[AGC034B] ABC

Score : 600600 points

Problem Statement

You are given a string ss consisting of A, B and C.

Snuke wants to perform the following operation on ss as many times as possible:

  • Choose a contiguous substring of ss that reads ABC and replace it with BCA.

Find the maximum possible number of operations.

Constraints

  • 1s2000001 \leq |s| \leq 200000
  • Each character of ss is A, B and C.

Input

Input is given from Standard Input in the following format:

ss

Output

Find the maximum possible number of operations.

ABCABC
3

You can perform the operations three times as follows: ABCABCBCAABCBCABCABCBCAA. This is the maximum result.

C
0
ABCACCBABCBCAABCB
6