結果

問題 No.143 豆
ユーザー yu_017yu_017
提出日時 2019-01-16 23:50:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 359 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-07-23 11:07:41
合計ジャッジ時間 6,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,200 KB
testcase_01 AC 134 ms
53,984 KB
testcase_02 AC 131 ms
54,116 KB
testcase_03 AC 134 ms
54,004 KB
testcase_04 AC 131 ms
53,948 KB
testcase_05 AC 133 ms
54,128 KB
testcase_06 AC 133 ms
53,796 KB
testcase_07 AC 136 ms
54,032 KB
testcase_08 AC 134 ms
53,992 KB
testcase_09 AC 136 ms
54,320 KB
testcase_10 AC 134 ms
54,040 KB
testcase_11 AC 135 ms
54,208 KB
testcase_12 AC 134 ms
54,040 KB
testcase_13 AC 137 ms
54,544 KB
testcase_14 AC 138 ms
54,020 KB
testcase_15 AC 140 ms
53,884 KB
testcase_16 AC 124 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000143 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		int n = sc.nextInt();
		int f = sc.nextInt();
		int count = 0;
		for(int i=0;i<f;i++) {
			count += sc.nextInt();
		}
		int r = (k*n-count)>-1?k*n-count:-1;
		sc.close();

		System.out.println(r);
	}
}
0