2061: 求字符串中所有整数的最小和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:26
Solved:9
Description
输入字符串s,输出s中包含所有整数的最小和。
说明
字符串s,只包含 a-z A-Z ± ;
合法的整数包括
1) 正整数 一个或者多个0-9组成,如 0 2 3 002 102
2)负整数 负号 – 开头,数字部分由一个或者多个0-9组成,如 -0 -012 -23 -00023
Input
包含数字的字符串
Output
所有整数的最小和
Sample Input Copy
bb1234aa
Sample Output Copy
10