A14356 | Potion-making
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have an initially empty cauldron, and you want to brew a potion in it. The potion consists of two ingredients: magic essence and water. The potion you want to brew should contain exactly $k\ \%$ magic essence and $(100 - k)\ \%$ water.
In one step, you can pour either one liter of magic essence or one liter of water into the cauldron. What is the minimum number of steps to brew a potion? You don't care about the total volume of the potion, only about the ratio between magic essence and water in it.
A small reminder: if you pour $e$ liters of essence and $w$ liters of water ( $e + w > 0$ ) into the cauldron, then it contains $\frac{e}{e + w} \cdot 100\ \%$ (without rounding) magic essence and $\frac{w}{e + w} \cdot 100\ \%$ water.
In one step, you can pour either one liter of magic essence or one liter of water into the cauldron. What is the minimum number of steps to brew a potion? You don't care about the total volume of the potion, only about the ratio between magic essence and water in it.
A small reminder: if you pour $e$ liters of essence and $w$ liters of water ( $e + w > 0$ ) into the cauldron, then it contains $\frac{e}{e + w} \cdot 100\ \%$ (without rounding) magic essence and $\frac{w}{e + w} \cdot 100\ \%$ water.
输入格式
The first line contains the single $t$ ( $1 \le t \le 100$ ) — the number of test cases.
The first and only line of each test case contains a single integer $k$ ( $1 \le k \le 100$ ) — the percentage of essence in a good potion.
The first and only line of each test case contains a single integer $k$ ( $1 \le k \le 100$ ) — the percentage of essence in a good potion.
输出格式
For each test case, print the minimum number of steps to brew a good potion. It can be proved that it's always possible to achieve it in a finite number of steps.
输入输出样例
输入 #1
3 3 100 25
输出 #1
100 1 4
In the first test case, you should pour $3$ liters of magic essence and $97$ liters of water into the cauldron to get a potion with $3\ \%$ of magic essence.
In the second test case, you can pour only $1$ liter of essence to get a potion with $100\ \%$ of magic essence.
In the third test case, you can pour $1$ liter of magic essence and $3$ liters of water.
In the second test case, you can pour only $1$ liter of essence to get a potion with $100\ \%$ of magic essence.
In the third test case, you can pour $1$ liter of magic essence and $3$ liters of water.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?