보안을 그리다, 훈이

[Baekjoon/Python3] 2576번 홀수 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2576번 홀수

HooNeee 2020. 12. 3. 02:06

[Baekjoon/Python3] 2576번 홀수

 

www.acmicpc.net/problem/2576

 

2576번: 홀수

7개의 자연수가 주어질 때, 이들 중 홀수인 자연수들을 모두 골라 그 합을 구하고, 고른 홀수들 중 최솟값을 찾는 프로그램을 작성하시오. 예를 들어, 7개의 자연수 12, 77, 38, 41, 53, 92, 85가 주어지

www.acmicpc.net

 

nums = []
for i in range(7):
    n = int(input())
    if n % 2 == 1:
        nums.append(n)
if len(nums) == 0:
    print(-1)
else:
    print(sum(nums), min(nums), sep='\n')
Comments