[백준] 1110. 더하기 사이클
문제
풀이
- 주어진 입력을 list로 변환 함.
- 문제의 조건대로 진행해주면서, 기존 n과 같아질 때 까지 while문을 돌며 같아질 시 return함.
코드
num = input()
def cycle(n) :
count = 0
std = n
while 1 :
n_list = list(n)
if len(n_list) == 1 :
n_list.insert(0, str(0))
tmp = [n_list[1], str(int(n_list[0]) + int(n_list[1]))]
count += 1
if len(tmp[1]) > 1 and tmp[1] != '00' :
tmp = [n_list[1], tmp[1][1]]
n = ''.join(tmp)
n = ''.join(tmp)
if int(std) == int(n) :
return count
print(cycle(num))
Author And Source
이 문제에 관하여([백준] 1110. 더하기 사이클), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@tldjfj123/백준-1110.-더하기-사이클
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- 주어진 입력을 list로 변환 함.
- 문제의 조건대로 진행해주면서, 기존 n과 같아질 때 까지 while문을 돌며 같아질 시 return함.
코드
num = input()
def cycle(n) :
count = 0
std = n
while 1 :
n_list = list(n)
if len(n_list) == 1 :
n_list.insert(0, str(0))
tmp = [n_list[1], str(int(n_list[0]) + int(n_list[1]))]
count += 1
if len(tmp[1]) > 1 and tmp[1] != '00' :
tmp = [n_list[1], tmp[1][1]]
n = ''.join(tmp)
n = ''.join(tmp)
if int(std) == int(n) :
return count
print(cycle(num))
Author And Source
이 문제에 관하여([백준] 1110. 더하기 사이클), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@tldjfj123/백준-1110.-더하기-사이클
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
num = input()
def cycle(n) :
count = 0
std = n
while 1 :
n_list = list(n)
if len(n_list) == 1 :
n_list.insert(0, str(0))
tmp = [n_list[1], str(int(n_list[0]) + int(n_list[1]))]
count += 1
if len(tmp[1]) > 1 and tmp[1] != '00' :
tmp = [n_list[1], tmp[1][1]]
n = ''.join(tmp)
n = ''.join(tmp)
if int(std) == int(n) :
return count
print(cycle(num))
Author And Source
이 문제에 관하여([백준] 1110. 더하기 사이클), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tldjfj123/백준-1110.-더하기-사이클저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)