SW Expert Academy

[SWEA] 홀수만 더하기 (2072) Python

RiLLa_0511 2023. 4. 30. 18:48
728x90

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq&categoryId=AV5QSEhaA5sDFAUq&categoryType=CODE&problemTitle=&orderBy=INQUERY_COUNT&selectCodeLang=PYTHON&select-1=&pageSize=10&pageIndex=1 

 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

10개의 숫자를 리스트로 입력받아서 2로 나눴을 때 나머지가 1인 수들을 더해주었다.

 

t = int(input())

for i in range(t):
    number = list(map(int, input().split()))
    result = 0
    for j in range(10):
        if number[j] % 2 == 1:
            result += number[j]
        else:
            continue
    print("#" + str(i + 1) + " " +str(result))

 

 

혼자 공부하며 올리는 블로그입니다. 틀린 내용은 댓글 남겨주시면 감사하겠습니다.