본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9933번 민균이의 비밀번호

by 현장 2022. 5. 14.

-Code

n = int(input())
passwords = [input() for _ in range(n)]
for password in passwords:
    if password[::-1] in passwords:
        print(len(password), password[len(password) // 2])
        break