A11506 | Garden
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Luba thinks about watering her garden. The garden can be represented as a segment of length $k$ . Luba has got $n$ buckets, the $i$ -th bucket allows her to water some continuous subsegment of garden of length exactly $a_{i}$ each hour. Luba can't water any parts of the garden that were already watered, also she can't water the ground outside the garden.
Luba has to choose one of the buckets in order to water the garden as fast as possible (as mentioned above, each hour she will water some continuous subsegment of length $a_{i}$ if she chooses the $i$ -th bucket). Help her to determine the minimum number of hours she has to spend watering the garden. It is guaranteed that Luba can always choose a bucket so it is possible water the garden.
See the examples for better understanding.
Luba has to choose one of the buckets in order to water the garden as fast as possible (as mentioned above, each hour she will water some continuous subsegment of length $a_{i}$ if she chooses the $i$ -th bucket). Help her to determine the minimum number of hours she has to spend watering the garden. It is guaranteed that Luba can always choose a bucket so it is possible water the garden.
See the examples for better understanding.
输入格式
The first line of input contains two integer numbers $n$ and $k$ ( $1<=n,k<=100$ ) — the number of buckets and the length of the garden, respectively.
The second line of input contains $n$ integer numbers $a_{i}$ ( $1<=a_{i}<=100$ ) — the length of the segment that can be watered by the $i$ -th bucket in one hour.
It is guaranteed that there is at least one bucket such that it is possible to water the garden in integer number of hours using only this bucket.
The second line of input contains $n$ integer numbers $a_{i}$ ( $1<=a_{i}<=100$ ) — the length of the segment that can be watered by the $i$ -th bucket in one hour.
It is guaranteed that there is at least one bucket such that it is possible to water the garden in integer number of hours using only this bucket.
输出格式
Print one integer number — the minimum number of hours required to water the garden.
输入输出样例
输入 #1
3 6 2 3 5
输出 #1
2
输入 #2
6 7 1 2 3 4 5 6
输出 #2
7
In the first test the best option is to choose the bucket that allows to water the segment of length $3$ . We can't choose the bucket that allows to water the segment of length $5$ because then we can't water the whole garden.
In the second test we can choose only the bucket that allows us to water the segment of length $1$ .
In the second test we can choose only the bucket that allows us to water the segment of length $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted