結果

問題 No.143 豆
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:46:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 649 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 56,392 KB
最終ジャッジ日時 2024-07-23 10:58:37
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,928 KB
testcase_01 AC 141 ms
54,220 KB
testcase_02 AC 136 ms
54,280 KB
testcase_03 AC 139 ms
54,128 KB
testcase_04 AC 140 ms
54,188 KB
testcase_05 AC 138 ms
53,936 KB
testcase_06 AC 141 ms
56,392 KB
testcase_07 AC 143 ms
53,888 KB
testcase_08 AC 139 ms
54,232 KB
testcase_09 AC 139 ms
54,232 KB
testcase_10 AC 138 ms
54,200 KB
testcase_11 AC 135 ms
53,840 KB
testcase_12 AC 138 ms
53,884 KB
testcase_13 AC 141 ms
53,972 KB
testcase_14 AC 140 ms
54,224 KB
testcase_15 AC 145 ms
54,224 KB
testcase_16 AC 133 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		//System.out.println("袋に入っている豆の数");
		Scanner scanner = new Scanner(System.in);
		int K = scanner.nextInt();
		//System.out.println("袋の数");
		int N = scanner.nextInt();

		//System.out.println("家族の人数");
		int F = scanner.nextInt();
		long b = K*N;	//豆の数
		int []A = new int[F];	//家族の年齢
		long e = 0;	//必要な豆の数
		for(int i = 0; i < F; i++) {
			A[i] = scanner.nextInt();
			e += A[i];
		}
		scanner.close();
		if(e <= b) {
			System.out.println(b - e);
		}else {
			System.out.println(-1);
		}
	}
}
0