A10212 | Finals in arithmetic
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vitya is studying in the third grade. During the last math lesson all the pupils wrote on arithmetic quiz. Vitya is a clever boy, so he managed to finish all the tasks pretty fast and Oksana Fillipovna gave him a new one, that is much harder.
Let's denote a flip operation of an integer as follows: number is considered in decimal notation and then reverted. If there are any leading zeroes afterwards, they are thrown away. For example, if we flip $123$ the result is the integer $321$ , but flipping $130$ we obtain $31$ , and by flipping $31$ we come to $13$ .
Oksana Fillipovna picked some number $a$ without leading zeroes, and flipped it to get number $a_{r}$ . Then she summed $a$ and $a_{r}$ , and told Vitya the resulting value $n$ . His goal is to find any valid $a$ .
As Oksana Fillipovna picked some small integers as $a$ and $a_{r}$ , Vitya managed to find the answer pretty fast and became interested in finding some general algorithm to deal with this problem. Now, he wants you to write the program that for given $n$ finds any $a$ without leading zeroes, such that $a+a_{r}=n$ or determine that such $a$ doesn't exist.
Let's denote a flip operation of an integer as follows: number is considered in decimal notation and then reverted. If there are any leading zeroes afterwards, they are thrown away. For example, if we flip $123$ the result is the integer $321$ , but flipping $130$ we obtain $31$ , and by flipping $31$ we come to $13$ .
Oksana Fillipovna picked some number $a$ without leading zeroes, and flipped it to get number $a_{r}$ . Then she summed $a$ and $a_{r}$ , and told Vitya the resulting value $n$ . His goal is to find any valid $a$ .
As Oksana Fillipovna picked some small integers as $a$ and $a_{r}$ , Vitya managed to find the answer pretty fast and became interested in finding some general algorithm to deal with this problem. Now, he wants you to write the program that for given $n$ finds any $a$ without leading zeroes, such that $a+a_{r}=n$ or determine that such $a$ doesn't exist.
输入格式
The first line of the input contains a single integer $n$ ( $1<=n<=10^{100000}$ ).
输出格式
If there is no such positive integer $a$ without leading zeroes that $a+a_{r}=n$ then print $0$ . Otherwise, print any valid $a$ . If there are many possible answers, you are allowed to pick any.
输入输出样例
输入 #1
4
输出 #1
2
输入 #2
11
输出 #2
10
输入 #3
5
输出 #3
0
输入 #4
33
输出 #4
21
In the first sample $4=2+2$ , $a=2$ is the only possibility.
In the second sample $11=10+1$ , $a=10$ — the only valid solution. Note, that $a=01$ is incorrect, because $a$ can't have leading zeroes.
It's easy to check that there is no suitable $a$ in the third sample.
In the fourth sample $33=30+3=12+21$ , so there are three possibilities for $a$ : $a=30$ , $a=12$ , $a=21$ . Any of these is considered to be correct answer.
In the second sample $11=10+1$ , $a=10$ — the only valid solution. Note, that $a=01$ is incorrect, because $a$ can't have leading zeroes.
It's easy to check that there is no suitable $a$ in the third sample.
In the fourth sample $33=30+3=12+21$ , so there are three possibilities for $a$ : $a=30$ , $a=12$ , $a=21$ . Any of these is considered to be correct answer.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted