시간 제한메모리 제한제출정답맞힌 사람정답 비율
서브태스크 참고 (추가 시간 없음) 1024 MB24201583.333%

문제

Ksenia is very fond of reading so she kicks off each day by reading a fragment from her favourite book before starting with the rest of her morning routine. A fragment is simply a substring of the text. Ksenia is somewhat superstitious and believes that her day will be lucky if the fragment she reads starts with the string KICK, then goes on with 0 or more characters, and eventually ends with the string START, even if the overall fragment makes little sense.

Given the text of the book, count the number of different lucky fragments that Ksenia can read before the book gets old and she needs to buy another one. Two fragments are considered to be different if they start or end at different positions in the text, even if the fragments read the same. Also note that different lucky fragments may overlap.

입력

The first line of the input gives the number of test cases TT lines follow, each containing a single string S consisting of upper case English letters only.'

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the number of different lucky fragments in the text of this test case.

제한

  • 1 ≤ T ≤ 100.
  • S consists of upper-case English letters only.

Test Set 1 (4점)

시간 제한: 20 초

  • 1 ≤ |S| ≤ 1000.

Test Set 2 (7점)

시간 제한: 40 초

  • 1 ≤ |S| ≤ 105.

예제 입력 1

3
AKICKSTARTPROBLEMNAMEDKICKSTART
STARTUNLUCKYKICK
KICKXKICKXSTARTXKICKXSTART

예제 출력 1

Case #1: 3
Case #2: 0
Case #3: 5

힌트

There are three lucky fragments in the first test case, namely, KICKSTARTPROBLEMNAMEDKICKSTART and two occurrences of KICKSTART. The text in the second test case has no lucky fragments at all.

채점 및 기타 정보

  • 예제는 채점하지 않는다.