CF1181B.Split a Number
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Dima worked all day and wrote down on a long paper strip his favorite number n consisting of l digits. Unfortunately, the strip turned out to be so long that it didn't fit in the Dima's bookshelf.
To solve the issue, Dima decided to split the strip into two non-empty parts so that each of them contains a positive integer without leading zeros. After that he will compute the sum of the two integers and write it down on a new strip.
Dima wants the resulting integer to be as small as possible, because it increases the chances that the sum will fit it in the bookshelf. Help Dima decide what is the minimum sum he can obtain.
输入格式
The first line contains a single integer l ( 2≤l≤100000 ) — the length of the Dima's favorite number.
The second line contains the positive integer n initially written on the strip: the Dima's favorite number.
The integer n consists of exactly l digits and it does not contain leading zeros. Dima guarantees, that there is at least one valid way to split the strip.
输出格式
Print a single integer — the smallest number Dima can obtain.
输入输出样例
输入#1
7 1234567
输出#1
1801
输入#2
3 101
输出#2
11
说明/提示
In the first example Dima can split the number 1234567 into integers 1234 and 567 . Their sum is 1801 .
In the second example Dima can split the number 101 into integers 10 and 1 . Their sum is 11 . Note that it is impossible to split the strip into "1" and "01" since the numbers can't start with zeros.