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: 488ms
Memory: 25316kB
Author: 15757118133
In contest: 1300

for tcase in range(int(input())):
    n,k,m=map(int,input().split())
    lst = list(map(int,input().split()))
    lst.sort()
    for j in range(k):
        n -= lst[j]
    if n<0:
        print(-n)
    else:
        print(0)