728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
728x90
t = int(input())
for test_case in range(1, t+1):
arr = map(int, input().split())
sum = 0
for a in arr:
if (a % 2 == 1):
sum += a
print("#"+str(test_case), sum)
728x90
'Problem Solving > SWEA' 카테고리의 다른 글
[SW Expert Academy, SWEA 2058] 자릿수 더하기 (python) (0) | 2022.05.06 |
---|---|
[SW Expert Academy, SWEA 2063] 중간값 찾기 (python) (0) | 2022.05.05 |
[SW Expert Academy, SWEA 2068] 최대수 구하기 (python) (0) | 2022.05.04 |
[SW Expert Academy, SWEA 2070] 큰 놈, 작은 놈, 같은 놈 (python) (0) | 2022.05.04 |
[SW Expert Academy, SWEA 2071] 평균값 구하기 (python) (0) | 2022.05.04 |