시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB255520.000%

문제

You are given a string s = s1s2 . . . sn. Consider an unordered pair of its substrings {a, b}. Let us call such pair incomparable if neither a is a substring of b nor b is a substring of a. You have to compute the number of incomparable pairs of substrings of s.

입력

The first line of input contains a single string s consisting of lowercase English letters (1 ≤ |s| ≤ 105).

출력

Output a single integer which is the answer to the problem.

예제 입력 1

abba

예제 출력 1

8

예제 입력 2

abacaba

예제 출력 2

64