문제 링크 : https://www.acmicpc.net/problem/1259
풀이
원래 브론즈 문제는 포스팅 하지 않으려 했으나 더 좋은 코드를 만드려고 노력하였던 기록을 남기고 싶어서 순서대로 풀이를 올려보겠다.
def cal(l):
if len(l) == 1:
return "yes"
if len(l) == 2:
if l[0] == l[1]:
return "yes"
return "no"
if len(l) == 3:
if l[0] == l[2]:
return "yes"
return "no"
if len(l) == 4:
if l[0] == l[3] and l[1] == l[2]:
return "yes"
return "no"
if len(l) == 5:
if l[0] == l[4] and l[1] == l[3]:
return "yes"
return "no"
while 1:
l = input()
if (int(l) == 0):
break
print(cal(list(l)))
처음에는 단순하게 입력받는 숫자의 길이대로 케이스를 나눠서 문제를 해결하였다.
def cal(l):
if len(l) == 1:
return "yes"
elif len(l) / 2 < 2:
if l[0] == l[len(l)-1]:
return "yes"
return "no"
else:
if l[0] == l[len(l)-1] and l[1] == l[len(l)-2]:
return "yes"
return "no"
while 1:
l = input()
if (int(l) == 0):
break
print(cal(list(l)))
그 후에 간단한 규칙을 찾아서 숫자를 한 번 비교하는 경우와 두 번 비교하는 경우를 나눠 풀었다.
def cal(l):
if len(l) == 1:
return "yes"
else:
for i in range(0, len(l)//2):
if l[i] != l[len(l)-(1+i)]:
return "no"
return "yes"
while 1:
l = input()
if (int(l) == 0):
break
print(cal(list(l)))
for문을 사용하여 더 간단하게 코드를 짤 수 있다고 생각하여 최종적으로 이렇게 간략화를 시켰다.
'알고리즘 > 알고리즘 문제 풀이' 카테고리의 다른 글
(Python) 백준 2751번 - 수 정렬하기 2 (0) | 2022.12.27 |
---|---|
(Python) 백준 1978번 - 소수 찾기 (0) | 2022.12.26 |
(Python) 백준 1436번 - 영화감독 숌 (0) | 2022.12.25 |
(Python) 백준 1181번 - 단어 정렬 (0) | 2022.12.24 |
(Python) 백준 10989번 - 수 정렬하기 3 (0) | 2022.12.20 |