문제 바로가기> 백준 5800번: 성적 통계
min()
, max()
함수를 이용하여 최소, 최대 값을 구하고 정렬 후 for문을 돌면서 인접한 점수간의 가장 큰 차이를 구하면 된다. 추가로 출력의 편의를 위해 format()
을 사용하였다.
def solution():
import sys
input = sys.stdin.readline
k = int(input())
for i in range(k):
score = list(map(int, input().split()))[1:]
score.sort()
min_score, max_score, Lgap = min(score), max(score), 0
for j in range(len(score)-1):
if Lgap<score[j+1]-score[j]:
Lgap = score[j+1]-score[j]
print('Class', i+1)
print('Max {0}, Min {1}, Largest gap {2}'.format(max_score, min_score, Lgap))
solution()