300641: CF122B. Lucky Substring
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Lucky Substring
题意翻译
Petya喜欢幸运数字。 每个人都知道幸运数字是正整数,其小数表示仅包含幸运数字4和7。例如,数字47、744、4是幸运数字,而5、17、467不是。 Petya收到了一个仅包含数字的字符串s。 他需要找到一个子字符串 ``` 是没有前导零的幸运数字, 不为空, 在s中作为子字符串包含s的最大次数。 ``` 在满足以上三个条件的所有字符串中,Petya仅需按字典顺序的最小条件即可。题目描述
Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. One day Petya was delivered a string $ s $ , containing only digits. He needs to find a string that - represents a lucky number without leading zeroes, - is not empty, - is contained in $ s $ as a substring the maximum number of times. Among all the strings for which the three conditions given above are fulfilled, Petya only needs the lexicographically minimum one. Find this string for Petya.输入输出格式
输入格式
The single line contains a non-empty string $ s $ whose length can range from $ 1 $ to $ 50 $ , inclusive. The string only contains digits. The string can contain leading zeroes.
输出格式
In the only line print the answer to Petya's problem. If the sought string does not exist, print "-1" (without quotes).
输入输出样例
输入样例 #1
047
输出样例 #1
4
输入样例 #2
16
输出样例 #2
-1
输入样例 #3
472747
输出样例 #3
7