728x90
반응형
단순 문자열 문제이다.
L = int(input())
s = input()
res = 0
for i in range(L):
res += (ord(s[i])-ord('a')+1)* 31**i
print(res % 1234567891)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11816번 8진수, 10진수, 16진수(python) (0) | 2021.02.26 |
---|---|
백준 알고리즘 11575번 Affine Cipher(python) (0) | 2021.02.26 |
백준 알고리즘 13702번 이상한 술집(python) (0) | 2021.02.26 |
백준 알고리즘 6236번 용돈 관리(python) (0) | 2021.02.26 |
백준 알고리즘 3079번 입국심사(python) (0) | 2021.02.26 |