problem solving/Project Euler
Problem 48 - Find the last ten digits of 1^1 + 2^2 + ... + 1000^1000.
toysmars
2010. 2. 23. 22:06
링크
The series, 11
+ 2
2
+ 3
3
+ ... + 10
10
= 10405071317.
Find the last ten digits of the series, 11
+ 2
2
+ 3
3
+ ... + 1000
1000
.
python
c++