QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 128 MB Total points: 100

#486. Palindromes

Statistics

Little Johnny enjoys playing with words. He has chosen $n$ palindromes (a palindrome is a word that reads the same when the letters composing it are taken in the reverse order, such as dad, eye or racecar for instance) then generated all $n^2$ possible pairs of them and concatenated the pairs into single words. Lastly, he counted how many of the so generated words are palindromes themselves. However, Johnny cannot be certain of not having comitted a mistake, so he has asked you to repeat the very same actions and to give him the outcome. Write a programme which shall perform this task for you.

Write a programme which:

  • reads the palindromes given by Johnny from the standard input,
  • determines the number of words formed out of pairs of palindromes from the input, which are palindromes themselves,
  • writes the outcome to the standard output.

Input

The first line of the standard input contains a single integer $n$, $n ≥ 2$, denoting the number of palindromes given by Johnny. The following $n$ lines contain a description of the palindromes. The $(i+1)$’st line contains a single positive integer ai denoting the length of $i$’th palindrome and a palindrome of ai small letters of English alphabet. The number $a_i$ is separated from the palindrome by a single space. The palindromes in distinct lines are distinct. The total length of all palindromes does not exceed $2\,000\,000$.

Output

The first and only line of the standard output should contain a single integer: the number of distinct ordered pairs of palindromes which form a palindrome upon being concatenated.

Example

Input

6
2 aa
3 aba
3 aaa
6 abaaba
5 aaaaa
4 abba

Output

14

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.