結果

問題 No.143 豆
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-04 12:59:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 417 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-07-23 10:26:20
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,976 KB
testcase_01 AC 135 ms
53,968 KB
testcase_02 AC 131 ms
53,936 KB
testcase_03 AC 114 ms
52,944 KB
testcase_04 AC 134 ms
54,220 KB
testcase_05 AC 137 ms
54,232 KB
testcase_06 AC 131 ms
54,020 KB
testcase_07 AC 134 ms
54,216 KB
testcase_08 AC 137 ms
53,780 KB
testcase_09 AC 134 ms
53,768 KB
testcase_10 AC 131 ms
54,244 KB
testcase_11 AC 130 ms
54,320 KB
testcase_12 AC 133 ms
53,960 KB
testcase_13 AC 134 ms
53,892 KB
testcase_14 AC 133 ms
53,988 KB
testcase_15 AC 137 ms
54,296 KB
testcase_16 AC 115 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int k = in.nextInt();
		int n = in.nextInt();
		int f = in.nextInt();

		int[] a = new int[f];
		int sum = k * n;
		for(int i=0; i<f; i++) {
			a[i] = in.nextInt();
			sum -= a[i];
		}

		if(sum < 0) {
			System.out.println(-1);
		} else {
			System.out.println(sum);
		}
	}
}
0