본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 29534번 Буквы и весы

by 현장 2024. 7. 21.

-Code

n = int(input())
s = input()

if len(s) > n:
    print("Impossible")
else:
    res = 0
    for w in s:
        res += ord(w) - ord('a') + 1
    print(res)