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)/满足目标工作时长的员工数目 [number-of-employees-who-met-the-target].html
2023-08-11 23:36:00 +08:00

40 lines
1.5 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>公司里共有 <code>n</code> 名员工,按从 <code>0</code><code>n - 1</code> 编号。每个员工 <code>i</code> 已经在公司工作了 <code>hours[i]</code> 小时。</p>
<p>公司要求每位员工工作&nbsp;<strong>至少</strong> <code>target</code> 小时。</p>
<p>给你一个下标从 <strong>0</strong> 开始、长度为 <code>n</code> 的非负整数数组 <code>hours</code> 和一个非负整数 <code>target</code></p>
<p>请你用整数表示并返回工作至少 <code>target</code> 小时的员工数。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>hours = [0,1,2,3,4], target = 2
<strong>输出:</strong>3
<strong>解释:</strong>公司要求每位员工工作至少 2 小时。
- 员工 0 工作 0 小时,不满足要求。
- 员工 1 工作 1 小时,不满足要求。
- 员工 2 工作 2 小时,满足要求。
- 员工 3 工作 3 小时,满足要求。
- 员工 4 工作 4 小时,满足要求。
共有 3 位满足要求的员工。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>hours = [5,1,4,2,2], target = 6
<strong>输出:</strong>0
<strong>解释:</strong>公司要求每位员工工作至少 6 小时。
共有 0 位满足要求的员工。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= n == hours.length &lt;= 50</code></li>
<li><code>0 &lt;=&nbsp;hours[i], target &lt;= 10<sup>5</sup></code></li>
</ul>