結果

問題 No.143 豆
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 19:53:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 425 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-23 10:52:24
合計ジャッジ時間 6,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,868 KB
testcase_01 AC 145 ms
54,132 KB
testcase_02 AC 141 ms
54,392 KB
testcase_03 AC 141 ms
53,928 KB
testcase_04 AC 145 ms
54,312 KB
testcase_05 AC 146 ms
54,192 KB
testcase_06 AC 144 ms
54,236 KB
testcase_07 AC 144 ms
53,932 KB
testcase_08 AC 145 ms
53,944 KB
testcase_09 AC 145 ms
54,268 KB
testcase_10 AC 144 ms
54,120 KB
testcase_11 AC 139 ms
54,212 KB
testcase_12 AC 147 ms
54,336 KB
testcase_13 AC 147 ms
54,120 KB
testcase_14 AC 145 ms
53,836 KB
testcase_15 AC 145 ms
54,128 KB
testcase_16 AC 135 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int K,N,F;
		K = sc.nextInt();
		N = sc.nextInt();
		F = sc.nextInt();

		int []a = new int[F];
		int B=0 ;

		for(int i=0;i<F;i++) {
			a[i] = sc.nextInt();
			B +=a[i];
		}

		int S ;
		S = K * N;

		if(S-B>=0) {
			System.out.println(S-B);
		}
		else {
			System.out.println(-1);
		}


	}

}
0