import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class No143 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int k = sc.nextInt(); int n = sc.nextInt(); int f = sc.nextInt(); int ageSum = 0; for (int i=1; i<=f; i++) { ageSum += sc.nextInt(); } int ans = k*n - ageSum; if (ans < 0) { ans = -1; } System.out.println(ans); } }