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()