보안을 그리다, 훈이

[Baekjoon/Python3] 10984번 내 학점을 구해줘 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10984번 내 학점을 구해줘

HooNeee 2020. 12. 6. 18:45

[Baekjoon/Python3] 10984번 내 학점을 구해줘

 

www.acmicpc.net/problem/10984

 

10984번: 내 학점을 구해줘

게으른 근우는 열심히 놀다가 문득, 자신의 학점 평균이 얼마일지 궁금해졌다. 학사시스템도 들어가기 귀찮아하는 근우를 위해 구해주도록 하자. 

www.acmicpc.net

 

t = int(input())
for i in range(t):
    total = 0   # 평점
    c_tot = 0   # 총 학점
    t = 0
    n = int(input())
    for j in range(n):
        c, g = map(float, input().split())
        c_tot += c
        t += c * g
    total = t / c_tot
    print(int(c_tot), '%.1f' %total)
Comments