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)/检查数组对是否可以被 k 整除 [check-if-array-pairs-are-divisible-by-k].html
2022-03-29 12:43:11 +08:00

44 lines
1.4 KiB
HTML
Raw Permalink 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>arr</code> 和一个整数 <code>k</code> ,其中数组长度是偶数,值为 <code>n</code></p>
<p>现在需要把数组恰好分成 <code>n /&nbsp;2</code> 对,以使每对数字的和都能够被 <code>k</code> 整除。</p>
<p>如果存在这样的分法,请返回 <em>True</em> ;否则,返回 <em>False</em></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>arr = [1,2,3,4,5,10,6,7,8,9], k = 5
<strong>输出:</strong>true
<strong>解释:</strong>划分后的数字对为 (1,9),(2,8),(3,7),(4,6) 以及 (5,10) 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>arr = [1,2,3,4,5,6], k = 7
<strong>输出:</strong>true
<strong>解释:</strong>划分后的数字对为 (1,6),(2,5) 以及 (3,4) 。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>arr = [1,2,3,4,5,6], k = 10
<strong>输出:</strong>false
<strong>解释:</strong>无法在将数组中的数字分为三对的同时满足每对数字和能够被 10 整除的条件。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>arr.length == n</code></li>
<li><code>1 &lt;= n &lt;= 10<sup>5</sup></code></li>
<li><code>n</code> 为偶数<meta charset="UTF-8" /></li>
<li><code>-10<sup>9</sup>&nbsp;&lt;= arr[i] &lt;= 10<sup>9</sup></code></li>
<li><code>1 &lt;= k &lt;= 10<sup>5</sup></code></li>
</ul>