結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,044 KB
testcase_01 AC 119 ms
41,168 KB
testcase_02 AC 105 ms
40,244 KB
testcase_03 AC 116 ms
41,176 KB
testcase_04 AC 119 ms
41,100 KB
testcase_05 AC 116 ms
41,368 KB
testcase_06 AC 115 ms
41,180 KB
testcase_07 AC 122 ms
41,296 KB
testcase_08 AC 125 ms
41,372 KB
testcase_09 WA -
testcase_10 AC 118 ms
41,224 KB
testcase_11 AC 116 ms
41,236 KB
testcase_12 AC 118 ms
39,936 KB
testcase_13 AC 123 ms
41,120 KB
testcase_14 AC 128 ms
41,184 KB
testcase_15 AC 127 ms
41,168 KB
testcase_16 AC 108 ms
39,916 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