baekjoon 20260222
This commit is contained in:
parent
0c9e8f4844
commit
89a2ea017d
5
code_study/Baekjoon/python/3058.py
Normal file
5
code_study/Baekjoon/python/3058.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
ans = []
|
||||||
|
for _ in range(int(input())) :
|
||||||
|
arr = list(filter(lambda x: x%2 == 0, map(int, input().split())))
|
||||||
|
ans.append(" ".join(list(map(str, [sum(arr), min(arr)]))))
|
||||||
|
print("\n".join(ans))
|
||||||
Loading…
x
Reference in New Issue
Block a user