-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30143번 Cookie Piles (0) | 2024.07.23 |
---|---|
[백준/파이썬] 4758번 Filling Out the Team (1) | 2024.07.22 |
[백준/파이썬] 25849번 Briefcases Full of Money (0) | 2024.07.20 |
[백준/파이썬] 32089번 部員の変遷 (0) | 2024.07.19 |
[백준/파이썬] 6500번 랜덤 숫자 만들기 (0) | 2024.07.18 |