結果

問題 No.143 豆
ユーザー jimanojimano
提出日時 2015-10-13 23:13:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 386 bytes
コンパイル時間 3,320 ms
コンパイル使用メモリ 78,232 KB
実行使用メモリ 55,960 KB
最終ジャッジ日時 2024-07-23 10:23:04
合計ジャッジ時間 6,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,956 KB
testcase_01 AC 143 ms
54,268 KB
testcase_02 AC 136 ms
54,448 KB
testcase_03 AC 135 ms
54,276 KB
testcase_04 AC 135 ms
54,008 KB
testcase_05 AC 136 ms
55,960 KB
testcase_06 AC 137 ms
54,348 KB
testcase_07 AC 137 ms
54,124 KB
testcase_08 AC 131 ms
53,956 KB
testcase_09 AC 135 ms
54,152 KB
testcase_10 AC 137 ms
54,412 KB
testcase_11 AC 130 ms
53,928 KB
testcase_12 AC 136 ms
54,300 KB
testcase_13 AC 135 ms
54,276 KB
testcase_14 AC 139 ms
54,336 KB
testcase_15 AC 140 ms
54,308 KB
testcase_16 AC 128 ms
53,852 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;

		for(int j = 0; j < age.length ; j++){
			age[j] = sc.nextInt();
			i += age[j];
		}
		System.out.println( (k * n >= i) ? k * n - i : -1 );
	}
}
0