46 lines
1.3 KiB
Python
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.

#!/usr/bin/env python3
# Using p022_names.txt, a 46K text file containing over five-thousand first names, begin by sorting it into alphabetical order.
# Then working out the alphabetical value for each name, multiply this value by its alphabetical position in the list to obtain a name score.
#
# For example, when the list is sorted into alphabetical order, COLIN, which is worth 3 + 15 + 12 + 9 + 14 = 53, is the 938th name in the list.
# So, COLIN would obtain a score of 938 × 53 = 49714.
#
# What is the total of all the name scores in the file?
import sys
from projecteuler import timing
@timing
def p022() -> None:
try:
with open('p022_names.txt', 'r', encoding='utf-8') as fp:
names = list(fp.readline().replace('"', '').split(','))
except FileNotFoundError:
print('Error while opening file p022_names.txt')
sys.exit(1)
names.sort()
_sum = 0
i = 1
# Calculate the score of each name an multiply by its position.
for name in names:
l = len(name)
score = 0
for j in range(l):
score = score + ord(name[j]) - ord('A') + 1
score = score * i
_sum = _sum + score
i = i + 1
print('Project Euler, Problem 22')
print(f'Answer: {_sum}')
if __name__ == '__main__':
p022()