본문 바로가기
파이썬/코딩 테스트

greedy : 6.곱하기 혹은 더하기

by L_SU 2022. 5. 29.
# 6. 곱하기 혹은 더하기
n = list(map(int, input("숫자들을 입력해주세요: ")))
h = 0
for i in n:
    if i == 0 or i*h < i+h:
        h += i
    else:
        h *= i

print(h)​

'파이썬 > 코딩 테스트' 카테고리의 다른 글

greedy : 8.만들 수 없는 금액  (0) 2022.05.29
greedy : 7.문자열 뒤집기  (0) 2022.05.29
greedy : 5.모험가 길드  (0) 2022.05.29
greedy : 4. 1이 될 때까지  (0) 2022.05.29
greedy : 3.숫자 카드 게임  (0) 2022.05.29