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 的操作数 [count-operations-to-obtain-zero].html
2022-03-29 12:43:11 +08:00

44 lines
1.8 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>非负</strong> 整数 <code>num1</code><code>num2</code></p>
<p>每一步 <strong>操作</strong>&nbsp;中,如果 <code>num1 &gt;= num2</code> ,你必须用 <code>num1</code><code>num2</code> ;否则,你必须用 <code>num2</code><code>num1</code></p>
<ul>
<li>例如,<code>num1 = 5</code><code>num2 = 4</code> ,应该用&nbsp;<code>num1</code><code>num2</code> ,因此,得到 <code>num1 = 1</code><code>num2 = 4</code> 。然而,如果 <code>num1 = 4</code><code>num2 = 5</code> ,一步操作后,得到 <code>num1 = 4</code><code>num2 = 1</code></li>
</ul>
<p>返回使 <code>num1 = 0</code><code>num2 = 0</code><strong>操作数</strong></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>num1 = 2, num2 = 3
<strong>输出:</strong>3
<strong>解释:</strong>
- 操作 1 num1 = 2 num2 = 3 。由于 num1 &lt; num2 num2 减 num1 得到 num1 = 2 num2 = 3 - 2 = 1 。
- 操作 2 num1 = 2 num2 = 1 。由于 num1 &gt; num2 num1 减 num2 。
- 操作 3 num1 = 1 num2 = 1 。由于 num1 == num2 num1 减 num2 。
此时 num1 = 0 num2 = 1 。由于 num1 == 0 ,不需要再执行任何操作。
所以总操作数是 3 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>num1 = 10, num2 = 10
<strong>输出:</strong>1
<strong>解释:</strong>
- 操作 1 num1 = 10 num2 = 10 。由于 num1 == num2 num1 减 num2 得到 num1 = 10 - 10 = 0 。
此时 num1 = 0 num2 = 10 。由于 num1 == 0 ,不需要再执行任何操作。
所以总操作数是 1 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>0 &lt;= num1, num2 &lt;= 10<sup>5</sup></code></li>
</ul>