BC119 最高分与最低分之差

思路:

step1:max() min()求出后做差即可;

代码如下:

n = int(input())
ls = list(map(int,input().split(' ')))
a = max(ls)
b = min(ls)
print(a-b)