for i in range(int(input())): n,k,m=map(int,input().split()) j=list(map(int,input().split())) j.sort() a=sum(j[:k]) print(0 if n>=a else a-n)