{"raw_statement":[{"iden":"problem statement","content":"Takahashi has $N$ days of summer vacation.\nHis teacher gave him $M$ summer assignments. It will take $A_i$ days for him to do the $i$\\-th assignment.\nHe cannot do multiple assignments on the same day, or hang out on a day he does an assignment.\nWhat is the maximum number of days Takahashi can hang out during the vacation if he finishes all the assignments during this vacation?\nIf Takahashi cannot finish all the assignments during the vacation, print `-1` instead."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 10^6$\n*   $1 \\leq M \\leq 10^4$\n*   $1 \\leq A_i \\leq 10^4$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $M$\n$A_1$ $...$ $A_M$"},{"iden":"sample input 1","content":"41 2\n5 6"},{"iden":"sample output 1","content":"30\n\nFor example, he can do the first assignment on the first $5$ days, hang out on the next $30$ days, and do the second assignment on the last $6$ days of the vacation. In this way, he can safely spend $30$ days hanging out."},{"iden":"sample input 2","content":"10 2\n5 6"},{"iden":"sample output 2","content":"\\-1\n\nHe cannot finish his assignments."},{"iden":"sample input 3","content":"11 2\n5 6"},{"iden":"sample output 3","content":"0\n\nHe can finish his assignments, but he will have no time to hang out."},{"iden":"sample input 4","content":"314 15\n9 26 5 35 8 9 79 3 23 8 46 2 6 43 3"},{"iden":"sample output 4","content":"9"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}