結果

問題 No.143 豆
ユーザー kameyama_skameyama_s
提出日時 2023-04-28 14:23:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-11-17 14:45:46
合計ジャッジ時間 4,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,520 KB
testcase_01 WA -
testcase_02 AC 116 ms
40,076 KB
testcase_03 AC 121 ms
41,488 KB
testcase_04 AC 125 ms
41,152 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 119 ms
41,336 KB
testcase_12 AC 123 ms
41,116 KB
testcase_13 AC 123 ms
41,564 KB
testcase_14 AC 125 ms
41,208 KB
testcase_15 AC 125 ms
41,728 KB
testcase_16 AC 117 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
		int sumBeans = a*b;
		int c = sc.nextInt();
		int eatSumBeans = 0;
		int [] familyNumber = new int[c];
		
		for(int i = 0; i<familyNumber.length; i++){
			int d = sc.nextInt();
			eatSumBeans= eatSumBeans+d;
		}
		int result = sumBeans - eatSumBeans;
		if(result <= 0){
			System.out.println(-1);
		}
        System.out.println(result);
    }
}
0