1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/全 0 子数组的数目 [number-of-zero-filled-subarrays].html
2022-07-29 23:59:06 +08:00

42 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个整数数组&nbsp;<code>nums</code>&nbsp;,返回全部为&nbsp;<code>0</code>&nbsp;&nbsp;<strong>子数组</strong>&nbsp;数目。</p>
<p><strong>子数组</strong>&nbsp;是一个数组中一段连续非空元素组成的序列。</p>
<p>&nbsp;</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>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
<li><code>-10<sup>9</sup> &lt;= nums[i] &lt;= 10<sup>9</sup></code></li>
</ul>