結果

問題 No.143 豆
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 19:52:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 3,503 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-05-05 18:55:41
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,412 KB
testcase_01 AC 124 ms
41,092 KB
testcase_02 AC 112 ms
39,988 KB
testcase_03 AC 117 ms
41,156 KB
testcase_04 AC 118 ms
41,464 KB
testcase_05 AC 116 ms
41,080 KB
testcase_06 AC 117 ms
41,456 KB
testcase_07 AC 124 ms
41,560 KB
testcase_08 AC 123 ms
41,212 KB
testcase_09 WA -
testcase_10 AC 122 ms
40,860 KB
testcase_11 AC 107 ms
40,380 KB
testcase_12 AC 113 ms
40,468 KB
testcase_13 AC 126 ms
41,340 KB
testcase_14 AC 120 ms
41,012 KB
testcase_15 AC 127 ms
41,476 KB
testcase_16 AC 104 ms
40,648 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