728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
C = G = 0
for i in range(int(input())):
c, g = map(float, input().split())
C += c
G += c*g
print("%d %.1f" %(C, G/C))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10991번 별 찍기 - 16(python) (0) | 2021.03.02 |
---|---|
백준 알고리즘 10990번 별 찍기 - 15(python) (0) | 2021.03.02 |
백준 알고리즘 10886번 0 = not cute / 1 = cute(python) (0) | 2021.03.02 |
백준 알고리즘 10833번 사과(python) (0) | 2021.03.02 |
백준 알고리즘 19572번 가뭄(Small)(python) (0) | 2021.03.01 |