eolymp
bolt
Try our new interface for solving problems
Problems

Standing Out from the Herd

Standing Out from the Herd

Just like humans, cows often appreciate feeling they are unique in some way. Since Farmer John's cows all come from the same breed and look quite similar, they want to measure uniqueness in their names.

Each cow's name has some number of substrings. For example, "amy" has substrings {a, m, y, am, my, amy}, and "tommy" would have the following substrings: {t, o, m, y, to, om, mm, my, tom, omm, mmy, tomm, ommy, tommy}.

A cow name has a "uniqueness factor" which is the number of substrings of that name not shared with any other cow. For example, If amy was in a herd by herself, her uniqueness factor would be 6. If tommy was in a herd by himself, his uniqueness factor would be 14. If they were in a herd together, however, amy's uniqueness factor would be 3 and tommy's would be 11.

Given a herd of cows, please determine each cow's uniqueness factor.

Input

The first line will contain n (1n105). The following n lines will each contain the name of a cow in the herd. Each name will contain only lowercase characters a - z. The total length of all names will not exceed 105.

Output

Output n numbers, one per line, describing the uniqueness factor of each cow.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3
amy
tommy
bessie
Output example #1
3
11
19
Source 2017 USACO December, Platinum