본문 바로가기
프로그래밍언어/Code_Practice

[SW Expert Academy] 홀수만 더하기

by 스꼬맹이브로 2021. 1. 20.
728x90
반응형
SMALL

*문제의 저작권은 SW Expert에 있습니다.

문제 링크 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq

 

10개의 수를 입력 받아, 그 중에서 홀수만 더한 값을 출력하는 프로그램을 작성하는 문제

 

T = int(input())

for i in range(T): 
    result = list(map(int, input().split(" "))) 
    odd_nums = [num for num in result if num % 2 == 1] 
    print("#{} {}".format(i+1, sum(odd_nums)))

 

728x90
반응형
LIST