A10939 | Divide by Three
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A positive integer number $n$ is written on a blackboard. It consists of not more than $10^{5}$ digits. You have to transform it into a beautiful number by erasing some of the digits, and you want to erase as few digits as possible.
The number is called beautiful if it consists of at least one digit, doesn't have leading zeroes and is a multiple of $3$ . For example, 0, 99, 10110 are beautiful numbers, and 00, 03, 122 are not.
Write a program which for the given $n$ will find a beautiful number such that $n$ can be transformed into this number by erasing as few digits as possible. You can erase an arbitraty set of digits. For example, they don't have to go one after another in the number $n$ .
If it's impossible to obtain a beautiful number, print -1. If there are multiple answers, print any of them.
The number is called beautiful if it consists of at least one digit, doesn't have leading zeroes and is a multiple of $3$ . For example, 0, 99, 10110 are beautiful numbers, and 00, 03, 122 are not.
Write a program which for the given $n$ will find a beautiful number such that $n$ can be transformed into this number by erasing as few digits as possible. You can erase an arbitraty set of digits. For example, they don't have to go one after another in the number $n$ .
If it's impossible to obtain a beautiful number, print -1. If there are multiple answers, print any of them.
输入格式
The first line of input contains $n$ — a positive integer number without leading zeroes ( $1<=n<10^{100000}$ ).
输出格式
Print one number — any beautiful number obtained by erasing as few as possible digits. If there is no answer, print $-1$ .
输入输出样例
输入 #1
1033
输出 #1
33
输入 #2
10
输出 #2
0
输入 #3
11
输出 #3
-1
In the first example it is enough to erase only the first digit to obtain a multiple of $3$ . But if we erase the first digit, then we obtain a number with a leading zero. So the minimum number of digits to be erased is two.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted