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)/只有两个键的键盘 [2-keys-keyboard].html
2022-03-29 12:43:11 +08:00

38 lines
1.2 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>'A'</code> 。你每次可以对这个记事本进行两种操作:</p>
<ul>
<li><code>Copy All</code>(复制全部):复制这个记事本中的所有字符(不允许仅复制部分字符)。</li>
<li><code>Paste</code>(粘贴):粘贴<strong> 上一次 </strong>复制的字符。</li>
</ul>
<p>给你一个数字&nbsp;<code>n</code> ,你需要使用最少的操作次数,在记事本上输出 <strong>恰好</strong>&nbsp;<code>n</code>&nbsp;<code>'A'</code> 。返回能够打印出&nbsp;<code>n</code>&nbsp;<code>'A'</code> 的最少操作次数。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>3
<strong>输出:</strong>3
<strong>解释:</strong>
最初, 只有一个字符 'A'。
第 1 步, 使用 <strong>Copy All</strong> 操作。
第 2 步, 使用 <strong>Paste </strong>操作来获得 'AA'。
第 3 步, 使用 <strong>Paste</strong> 操作来获得 'AAA'。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>n = 1
<strong>输出:</strong>0
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= n &lt;= 1000</code></li>
</ul>