for tcase in range(int(input())): n,k,m = map(int , input().split()) lst = sorted(list(map(int , input().split()))) s = sum(lst[0:k]) print((s - n) if (s > n) else "0")