プロジェクト

全般

プロフィール

Problem 63 » 履歴 » バージョン 1

Noppi, 2024/01/27 15:59

1 1 Noppi
[ホーム](https://redmine.noppi.jp) - [[Wiki|Project Euler]]
2
# [[Problem 63]]
3
4
## Powerful Digit Counts
5
The $5$-digit number, $16807=7^5$, is also a fifth power. Similarly, the $9$-digit number, $134217728=8^9$, is a ninth power.
6
7
How many $n$-digit positive integers exist which are also an $n$th power?
8
9
## べき乗の桁の個数
10
$5$桁の数 $16807=7^5$は自然数を5乗した数である. 同様に$9$桁の数 $134217728=8^9$も自然数を9乗した数である.
11
12
自然数を $n$ 乗して得られる $n$ 桁の正整数は何個あるか?
13
14
```scheme
15
```