結果

問題 No.143 豆
ユーザー jimanojimano
提出日時 2015-10-13 22:59:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 3,816 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-07-21 07:37:51
合計ジャッジ時間 6,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,660 KB
testcase_01 AC 142 ms
53,992 KB
testcase_02 AC 140 ms
53,640 KB
testcase_03 AC 145 ms
53,940 KB
testcase_04 AC 146 ms
53,960 KB
testcase_05 AC 144 ms
53,716 KB
testcase_06 AC 146 ms
54,016 KB
testcase_07 AC 146 ms
53,988 KB
testcase_08 AC 143 ms
54,052 KB
testcase_09 WA -
testcase_10 AC 142 ms
53,628 KB
testcase_11 AC 138 ms
53,952 KB
testcase_12 AC 143 ms
54,164 KB
testcase_13 AC 144 ms
54,020 KB
testcase_14 AC 143 ms
53,624 KB
testcase_15 AC 147 ms
53,884 KB
testcase_16 AC 134 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143 {
	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[] age = new int[f];
		int i = 0, j = 0;

		while(sc.hasNext()){
			age[i] = sc.nextInt();
			i++;
		}

		for(int a : age) j += a;

		System.out.println( (k * n > j) ? k * n - j : -1 );
	}
}
0