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: 275ms
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])
    if n >= need_money:
        print(0)
    else:
        print(need_money-n)