1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/表现良好的最长时间段 [longest-well-performing-interval].html

33 lines
1016 B
HTML
Raw Normal View History

2022-03-27 20:37:52 +08:00
<p>给你一份工作时间表&nbsp;<code>hours</code>,上面记录着某一位员工每天的工作小时数。</p>
<p>我们认为当员工一天中的工作小时数大于&nbsp;<code>8</code> 小时的时候,那么这一天就是「<strong>劳累的一天</strong>」。</p>
<p>所谓「表现良好的时间段」,意味在这段时间内,「劳累的天数」是严格<strong> 大于</strong>「不劳累的天数」。</p>
<p>请你返回「表现良好时间段」的最大长度。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>hours = [9,9,6,0,6,6,9]
<strong>输出:</strong>3
<strong>解释:</strong>最长的表现良好时间段是 [9,9,6]。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>hours = [6,6,6]
<strong>输出:</strong>0
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= hours.length &lt;= 10<sup>4</sup></code></li>
<li><code>0 &lt;= hours[i] &lt;= 16</code></li>
</ul>