반응형
https://www.acmicpc.net/problem/2576
list1 = []
for i in range(7):
x = int(input())
if x % 2 != 0:
list1.append(x)
if len(list1) >= 1:
print(sum(list1))
print(min(list1))
else:
print('-1')
반응형
'BOJ > Python' 카테고리의 다른 글
백준 2742번 기찍 N 파이썬 (0) | 2021.08.11 |
---|---|
백준 2741번 N찍기 파이썬 (0) | 2021.08.11 |
백준 2863번 이게 분수? 파이썬 (0) | 2021.08.09 |
백준 2739번 구구단 파이썬 (0) | 2021.08.09 |
백준 2903번 중앙 이동 알고리즘 파이썬 (0) | 2021.08.09 |