문제
https://school.programmers.co.kr/learn/courses/30/lessons/181929
문제 설명
정수가 담긴 리스트 num_list
가 주어질 때, 모든 원소들의 곱이 모든 원소들의 합의 제곱보다 작으면 1을 크면 0을 return하도록 solution 함수를 완성해주세요.
제한사항
- 2 ≤
num_list
의 길이 ≤ 10 - 1 ≤
num_list
의 원소 ≤ 9
입출력 예
num_list | result |
---|---|
[3, 4, 5, 2, 1] | 1 |
[5, 7, 8, 3] | 0 |
Code
from math import pow
def solution(num_list):
total = 0
multiple = 1
for num in num_list:
total += num
multiple *= num
total = pow(total, 2)
return int(total > multiple)
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Lv.0/Python] 이어 붙인 수 (0) | 2023.06.17 |
---|---|
[Lv.0/Python] 등차수열의 특정한 항만 더하기 (0) | 2023.06.17 |
[Lv.0/Python] 주사위 게임 2 (0) | 2023.06.17 |
[Lv.0/Python] 코드 처리하기 (0) | 2023.06.17 |
[Lv.0/Python] 특수문자 출력하기 (0) | 2023.06.15 |