mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<p>给定一个正整数数组 <code>nums</code>和整数 <code>k</code> ,请找出该数组内乘积小于 <code>k</code> 的连续的子数组的个数。</p>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>示例 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>输入:</strong> nums = [10,5,2,6], k = 100
|
|
<strong>输出:</strong> 8
|
|
<strong>解释:</strong> 8 个乘积小于 100 的子数组分别为: [10], [5], [2], [6], [10,5], [5,2], [2,6], [5,2,6]。
|
|
需要注意的是 [10,5,2] 并不是乘积小于100的子数组。
|
|
</pre>
|
|
|
|
<p><strong>示例 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>输入:</strong> nums = [1,2,3], k = 0
|
|
<strong>输出:</strong> 0</pre>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>提示: </strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= nums.length <= 3 * 10<sup>4</sup></code></li>
|
|
<li><code>1 <= nums[i] <= 1000</code></li>
|
|
<li><code>0 <= k <= 10<sup>6</sup></code></li>
|
|
</ul>
|
|
|
|
<p> </p>
|
|
|
|
<p><meta charset="UTF-8" />注意:本题与主站 713 题相同:<a href="https://leetcode-cn.com/problems/subarray-product-less-than-k/">https://leetcode-cn.com/problems/subarray-product-less-than-k/</a> </p>
|