Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SuNiNaTas
- Digital Forensics
- C
- Web
- php
- 문자열
- Web Hacking
- misc
- 사칙연산
- Forensics
- Python
- writeup
- 백준
- Database
- 정렬
- 써니나타스
- 그리디 알고리즘
- cryptography
- wargame
- Incognito
- Text
- 인코그니토
- MySQL
- 구현
- N0Named
- Network
- HackCTF
- 수학
- xcz.kr
- CTF
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10984번 내 학점을 구해줘 본문
[Baekjoon/Python3] 10984번 내 학점을 구해줘
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)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10988번 팰린드롬인지 확인하기 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 10987번 모음의 개수 (0) | 2020.12.06 |
[Baekjoon/Python3] 10953번 A + B - 6 (0) | 2020.12.06 |
[Baekjoon/Python3] 10952번 A + B - 5 (0) | 2020.12.06 |
[Baekjoon/Python3] 10951번 A + B - 4 (0) | 2020.12.06 |
Comments