목차

Hashing

ps
링크acmicpc.net/…
출처BOJ
문제 번호15829
문제명Hashing
레벨브론즈 2
분류

기초

시간복잡도O(n)
인풋사이즈n<=50
사용한 언어Python
제출기록29200KB / 72ms
최고기록56ms
해결날짜2021/10/13

풀이

코드

"""Solution code for "BOJ 15829. Hashing".

- Problem link: https://www.acmicpc.net/problem/15829
- Solution link: http://www.teferi.net/ps/problems/boj/15829
"""

R = 31
M = 1234567891


def main():
    L = int(input())  # pylint: disable=unused-variable
    s = input()
    h = 0
    ch_map = {ch: i for i, ch in enumerate('abcdefghijklmnopqrstuvwxyz', 1)}
    for ch in reversed(s):
        h = (h * R + ch_map[ch]) % M
    print(h)


if __name__ == '__main__':
    main()