#P1110H. Modest Substrings
Modest Substrings
No submission language available for this problem.
Description
You are given two integers and .
Let's call an integer modest, if .
Find a string of length , consisting of digits, which has the largest possible number of substrings, which make a modest integer. Substring having leading zeros are not counted. If there are many answers, find lexicographically smallest one.
If some number occurs multiple times as a substring, then in the counting of the number of modest substrings it is counted multiple times as well.
The first line contains one integer ().
The second line contains one integer ().
The third line contains one integer ().
In the first line, print the maximum possible number of modest substrings.
In the second line, print a string of length having exactly that number of modest substrings.
If there are multiple such strings, print the lexicographically smallest of them.
Input
The first line contains one integer ().
The second line contains one integer ().
The third line contains one integer ().
Output
In the first line, print the maximum possible number of modest substrings.
In the second line, print a string of length having exactly that number of modest substrings.
If there are multiple such strings, print the lexicographically smallest of them.
Samples
Note
In the first example, string «101» has modest substrings «1», «10», «1».
In the second example, string «111» has modest substrings «1» ( times) and «11» ( times).