結果

問題 No.143 豆
ユーザー kameyama_skameyama_s
提出日時 2023-04-28 14:25:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-11-17 14:46:44
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,876 KB
testcase_01 AC 125 ms
41,188 KB
testcase_02 AC 127 ms
41,632 KB
testcase_03 AC 119 ms
41,240 KB
testcase_04 AC 125 ms
41,320 KB
testcase_05 AC 127 ms
41,452 KB
testcase_06 AC 122 ms
41,068 KB
testcase_07 AC 122 ms
41,668 KB
testcase_08 AC 122 ms
41,628 KB
testcase_09 WA -
testcase_10 AC 127 ms
41,168 KB
testcase_11 AC 125 ms
41,504 KB
testcase_12 AC 125 ms
41,084 KB
testcase_13 AC 128 ms
41,544 KB
testcase_14 AC 126 ms
40,896 KB
testcase_15 AC 129 ms
41,320 KB
testcase_16 AC 116 ms
40,916 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);
		}else{
        	System.out.println(result);
		}
    }
}
0