-
Notifications
You must be signed in to change notification settings - Fork 0
/
p048.py
12 lines (11 loc) · 884 Bytes
/
p048.py
1
2
3
4
5
6
7
8
9
10
11
12
################################################################################
# P48: Self powers #
################################################################################
# #
# Find the last ten digits of the series, 1^1 + 2^2 + 3^3 + ... + 1000^1000. #
# #
################################################################################
# Problem found at projecteuler.net #
# Author: ncfgrill #
################################################################################
print('Last 10 digits:', str(sum(i ** i for i in range(1, 1001)))[-10:])