baekjoon 20260222

This commit is contained in:
songyc macbook 2026-02-22 21:52:30 +09:00
parent 0c9e8f4844
commit 89a2ea017d

View 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))