测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A12758. Split a Number

编程题 普及/提高-

题目描述

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 \le l \le 100\,000$ ) — 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.
上一题 去做题 下一题