0
是在計算和之後被清空的列表?ValueError:max()arg是一個空序列[python 3]
t = int(input())
while t > 0:
n,m=map(int,input().split())
a=map(int,input().split())
l,o=sum(a),max(a)
print(l)
if ((o * n)-l) == m:
print("YES")
else:
print((o * n)-l)
print("NO")
t = t-1
由於一噸:) – user304392 2014-10-03 10:43:48