4023.Robot Bicorn Attack

Time Limit: 1s Memory Limit: 256MB

Vasya plays Robot Bicorn Attack.

The game consists of three rounds. For each one a non-negative integer amount of points is given. The result of the game is the sum of obtained points. Vasya has already played three rounds and wrote obtained points one by one (without leading zeros) into the string s. Vasya decided to brag about his achievement to the friends. However, he has forgotten how many points he got for each round. The only thing he remembers is the string s.

Help Vasya to find out what is the maximum amount of points he could get. Take into account that Vasya played Robot Bicorn Attack for the first time, so he could not get more than 1000000 (106) points for one round.

Input Format(From the terminal/stdin)

The only line of input contains non-empty string s obtained by Vasya. The string consists of digits only. The string length does not exceed 30 characters.

Output Format(To the terminal/stdout)

Print the only number - the maximum amount of points Vasya could get. If Vasya is wrong and the string could not be obtained according to the rules then output number -1.

Sample Input 1

Copy
1234
    \n

Sample Output 1

Copy
37
  \n

Sample Input 2

Copy
9000
    \n

Sample Output 2

Copy
90
  \n

Sample Input 3

Copy
0009
    \n

Sample Output 3

Copy
-1
  \n

Hints

In the first example the string must be split into numbers 1, 2 and 34.

In the second example the string must be split into numbers 90, 0 and 0.

In the third example the string is incorrect, because after splitting the string into 3 numbers number 00 or 09 will be obtained, but numbers cannot have leading zeroes.

Submit

请先 登录

© 2025 FAQs