목차

단어 공부

ps
링크acmicpc.net/…
출처BOJ
문제 번호1157
문제명단어 공부
레벨브론즈 1
분류

기초

시간복잡도O(n)
인풋사이즈n<=1,000,000
사용한 언어Python
제출기록48720KB / 216ms
최고기록84ms
해결날짜2021/11/05

풀이

코드

"""Solution code for "BOJ 1157. 단어 공부".

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

import statistics


def main():
    word = input()
    modes = statistics.multimode(word.upper())
    print(modes[0] if len(modes) == 1 else '?')


if __name__ == '__main__':
    main()