Start: Jul, 06, 2019 10:00:00
20190706Python程序设计基础培训扩展练习
End: Jul, 17, 2019 12:00:00
Time elapsed:
Time remaining:

Problem_ID: A
Result: Accepted
Time: 317ms
Memory: 25316kB
Author: shanzhenyu
In contest: 1300

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