[구현/수학] 백준 11367 Reprot Card Time - 파이썬(Python)


[구현/수학] 백준 11367 Reprot Card Time - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 11367번: Report Card Time The input will begin with a single line containing just a whole number, n, of the number of hobbits in the class, followed by n lines in the form a b, where a is the hobbit’s name (only alphabetical characters) and b is the hobbit’s grade, given as a w www.acmicpc.net 2. 문제 풀이 평점평균을 계산하는 문제입니다. 3. 코드 import sys input = sys.stdin.readline # 입력 f..


원문링크 : [구현/수학] 백준 11367 Reprot Card Time - 파이썬(Python)