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)/双模幂运算 [double-modular-exponentiation].html
2023-12-20 15:51:53 +08:00

46 lines
2.0 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>给你一个下标从 <strong>0 </strong>开始的二维数组 <code>variables</code> ,其中 <code>variables[i] = [a<sub>i</sub>, b<sub>i</sub>, c<sub>i,</sub> m<sub>i</sub>]</code>,以及一个整数 <code>target</code></p>
<p>如果满足以下公式,则下标 <code>i</code><strong>好下标</strong></p>
<ul>
<li><code>0 &lt;= i &lt; variables.length</code></li>
<li><code>((a<sub>i</sub><sup>b<sub>i</sub></sup> % 10)<sup>c<sub>i</sub></sup>) % m<sub>i</sub> == target</code></li>
</ul>
<p>返回一个由<strong> 好下标 </strong>组成的数组,<strong>顺序不限</strong></p>
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
<pre>
<strong>输入:</strong>variables = [[2,3,3,10],[3,3,3,1],[6,1,1,4]], target = 2
<strong>输出:</strong>[0,2]
<strong>解释:</strong>对于 variables 数组中的每个下标 i
1) 对于下标 0 variables[0] = [2,3,3,10] (2<sup>3</sup> % 10)<sup>3</sup> % 10 = 2 。
2) 对于下标 1 variables[1] = [3,3,3,1] (3<sup>3</sup> % 10)<sup>3</sup> % 1 = 0 。
3) 对于下标 2 variables[2] = [6,1,1,4] (6<sup>1</sup> % 10)<sup>1</sup> % 4 = 2 。
因此,返回 [0,2] 作为答案。
</pre>
<p><strong class="example">示例 2</strong></p>
<pre>
<strong>输入:</strong>variables = [[39,3,1000,1000]], target = 17
<strong>输出:</strong>[]
<strong>解释:</strong>对于 variables 数组中的每个下标 i
1) 对于下标 0 variables[0] = [39,3,1000,1000] (39<sup>3</sup> % 10)<sup>1000</sup> % 1000 = 1 。
因此,返回 [] 作为答案。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= variables.length &lt;= 100</code></li>
<li><code>variables[i] == [a<sub>i</sub>, b<sub>i</sub>, c<sub>i</sub>, m<sub>i</sub>]</code></li>
<li><code>1 &lt;= a<sub>i</sub>, b<sub>i</sub>, c<sub>i</sub>, m<sub>i</sub> &lt;= 10<sup>3</sup></code></li>
<li><code><font face="monospace">0 &lt;= target &lt;= 10<sup>3</sup></font></code></li>
</ul>