[SWEA] - 1989. 초심자의 회문검사
for tc in range(1, int(input())+1):
word = list(input())
check = ['0']*(len(word)//2)
for i in range(len(word)//2):
check[i] = word[-(i+1)]
if check == word[:len(word)//2]:
print('#{} 1'.format(tc))
else:
print('#{} 0'.format(tc))
def check(arr):
N = len(arr)
i = 0
while i < N//2:
if arr[i] != arr[-(i+1)]:
return 0
i += 1
return 1
for tc in range(1, int(input())+1):
word = list(input())
print('#{} {}'.format(tc, check(word)))
t = int(input())
for tc in range(1, t + 1):
s = input()
result = 0
for i in range(len(s)//2):
if s[i] != s[len(s)-1-i]:
break
else:
result = 1
print("#{} {}".format(tc, result))
Author And Source
이 문제에 관하여([SWEA] - 1989. 초심자의 회문검사), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jjiani/SWEA-1989.-초심자의-회문검사저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)