atcoder#ARC071A. [ABC058C] 怪文書
[ABC058C] 怪文書
Score : points
Problem Statement
Snuke loves "paper cutting": he cuts out characters from a newspaper headline and rearranges them to form another string.
He will receive a headline which contains one of the strings tomorrow. He is excited and already thinking of what string he will create. Since he does not know the string on the headline yet, he is interested in strings that can be created regardless of which string the headline contains.
Find the longest string that can be created regardless of which string among the headline contains. If there are multiple such strings, find the lexicographically smallest one among them.
Constraints
- for every .
- consists of lowercase English letters (
a
-z
) for every .
Input
Input is given from Standard Input in the following format:
Output
Print the lexicographically smallest string among the longest strings that satisfy the condition. If the answer is an empty string, print an empty line.
3
cbaa
daacc
acacac
aac
The strings that can be created from each of cbaa
, daacc
and acacac
, are aa
, aac
, aca
, caa
and so forth.
Among them, aac
, aca
and caa
are the longest, and the lexicographically smallest of these three is aac
.
3
a
aa
b
The answer is an empty string.