-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
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 14405번 피카츄 (0) | 2022.05.14 |
---|---|
[백준/파이썬] 2204번 도비의 난독증 테스트 (0) | 2022.05.14 |
[백준/파이썬] 1718번 암호 (0) | 2022.05.13 |
[백준/파이썬] 16916번 부분 문자열 (0) | 2022.05.13 |
[백준/파이썬] 17609번 회문 (0) | 2022.05.13 |