Playing with Substrings

3.6

19 votes
Problem

Description

You are given two strings S and T, such that length of S is greater than the length of T. Then a substring of S is defined as a sequence of characters which appear consecutively in S.

Find the total number of distinct substrings of M such that T is a substring of M

Input Format

One line containing strings S and T separated by a space.

Output Format

One line containing the number of distinct substrings of M such that T is a substring of M

Input Limits:

0 < Length(S), Length(T) < 100

Sample Input
abcc c
Sample Output
6
Time Limit: 5
Memory Limit: 256
Source Limit:
Explanation

Suppose the string S is abcc. Then the distinct substrings of S are a, b, c, ab, bc, cc, abc, bcc, abcc

Contributers:
Editor Image

?