mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
|
<p>给你一个整数数组 <code>nums</code> ,返回全部为 <code>0</code> 的 <strong>子数组</strong> 数目。</p>
|
|||
|
|
|||
|
<p><strong>子数组</strong> 是一个数组中一段连续非空元素组成的序列。</p>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>示例 1:</strong></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>nums = [1,3,0,0,2,0,0,4]
|
|||
|
<b>输出:</b>6
|
|||
|
<b>解释:</b>
|
|||
|
子数组 [0] 出现了 4 次。
|
|||
|
子数组 [0,0] 出现了 2 次。
|
|||
|
不存在长度大于 2 的全 0 子数组,所以我们返回 6 。</pre>
|
|||
|
|
|||
|
<p><strong>示例 2:</strong></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>nums = [0,0,0,2,0,0]
|
|||
|
<b>输出:</b>9
|
|||
|
<strong>解释:
|
|||
|
</strong>子数组 [0] 出现了 5 次。
|
|||
|
子数组 [0,0] 出现了 3 次。
|
|||
|
子数组 [0,0,0] 出现了 1 次。
|
|||
|
不存在长度大于 3 的全 0 子数组,所以我们返回 9 。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 3:</strong></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>nums = [2,10,2019]
|
|||
|
<b>输出:</b>0
|
|||
|
<b>解释:</b>没有全 0 子数组,所以我们返回 0 。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>提示:</strong></p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
|
|||
|
<li><code>-10<sup>9</sup> <= nums[i] <= 10<sup>9</sup></code></li>
|
|||
|
</ul>
|