A15519 | Make It Round
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Inflation has occurred in Berlandia, so the store needs to change the price of goods.
The current price of good $n$ is given. It is allowed to increase the price of the good by $k$ times, with $1 \le k \le m$ , k is an integer. Output the roundest possible new price of the good. That is, the one that has the maximum number of zeros at the end.
For example, the number 481000 is more round than the number 1000010 (three zeros at the end of 481000 and only one at the end of 1000010).
If there are several possible variants, output the one in which the new price is maximal.
If it is impossible to get a rounder price, output $n \cdot m$ (that is, the maximum possible price).
The current price of good $n$ is given. It is allowed to increase the price of the good by $k$ times, with $1 \le k \le m$ , k is an integer. Output the roundest possible new price of the good. That is, the one that has the maximum number of zeros at the end.
For example, the number 481000 is more round than the number 1000010 (three zeros at the end of 481000 and only one at the end of 1000010).
If there are several possible variants, output the one in which the new price is maximal.
If it is impossible to get a rounder price, output $n \cdot m$ (that is, the maximum possible price).
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) —the number of test cases in the test.
Each test case consists of one line.
This line contains two integers: $n$ and $m$ ( $1 \le n, m \le 10^9$ ). Where $n$ is the old price of the good, and the number $m$ means that you can increase the price $n$ no more than $m$ times.
Each test case consists of one line.
This line contains two integers: $n$ and $m$ ( $1 \le n, m \le 10^9$ ). Where $n$ is the old price of the good, and the number $m$ means that you can increase the price $n$ no more than $m$ times.
输出格式
For each test case, output on a separate line the roundest integer of the form $n \cdot k$ ( $1 \le k \le m$ , $k$ — an integer).
If there are several possible variants, output the one in which the new price (value $n \cdot k$ ) is maximal.
If it is impossible to get a more rounded price, output $n \cdot m$ (that is, the maximum possible price).
If there are several possible variants, output the one in which the new price (value $n \cdot k$ ) is maximal.
If it is impossible to get a more rounded price, output $n \cdot m$ (that is, the maximum possible price).
输入输出样例
输入 #1
10 6 11 5 43 13 5 4 16 10050 12345 2 6 4 30 25 10 2 81 1 7
输出 #1
60 200 65 60 120600000 10 100 200 100 7
In the first case $n = 6$ , $m = 11$ . We cannot get a number with two zeros or more at the end, because we need to increase the price $50$ times, but $50 > m = 11$ . The maximum price multiple of $10$ would be $6 \cdot 10 = 60$ .
In the second case $n = 5$ , $m = 43$ . The maximum price multiple of $100$ would be $5 \cdot 40 = 200$ .
In the third case, $n = 13$ , $m = 5$ . All possible new prices will not end in $0$ , then you should output $n \cdot m = 65$ .
In the fourth case, you should increase the price $15$ times.
In the fifth case, increase the price $12000$ times.
In the second case $n = 5$ , $m = 43$ . The maximum price multiple of $100$ would be $5 \cdot 40 = 200$ .
In the third case, $n = 13$ , $m = 5$ . All possible new prices will not end in $0$ , then you should output $n \cdot m = 65$ .
In the fourth case, you should increase the price $15$ times.
In the fifth case, increase the price $12000$ times.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted