A13686 | Fair Numbers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
We call a positive integer number fair if it is divisible by each of its nonzero digits. For example, $102$ is fair (because it is divisible by $1$ and $2$ ), but $282$ is not, because it isn't divisible by $8$ . Given a positive integer $n$ . Find the minimum integer $x$ , such that $n \leq x$ and $x$ is fair.
输入格式
The first line contains number of test cases $t$ ( $1 \leq t \leq 10^3$ ). Each of the next $t$ lines contains an integer $n$ ( $1 \leq n \leq 10^{18}$ ).
输出格式
For each of $t$ test cases print a single integer — the least fair number, which is not less than $n$ .
输入输出样例
输入 #1
4 1 282 1234567890 1000000000000000000
输出 #1
1 288 1234568040 1000000000000000000
Explanations for some test cases:
- In the first test case number $1$ is fair itself.
- In the second test case number $288$ is fair (it's divisible by both $2$ and $8$ ). None of the numbers from $[282, 287]$ is fair, because, for example, none of them is divisible by $8$ .
- In the first test case number $1$ is fair itself.
- In the second test case number $288$ is fair (it's divisible by both $2$ and $8$ ). None of the numbers from $[282, 287]$ is fair, because, for example, none of them is divisible by $8$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted