結果

問題 No.143 豆
ユーザー kameyama_skameyama_s
提出日時 2023-04-28 14:25:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-04-28 19:39:10
合計ジャッジ時間 5,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,600 KB
testcase_01 AC 141 ms
40,948 KB
testcase_02 AC 138 ms
41,072 KB
testcase_03 AC 143 ms
41,320 KB
testcase_04 AC 142 ms
41,532 KB
testcase_05 AC 142 ms
41,232 KB
testcase_06 AC 149 ms
41,472 KB
testcase_07 AC 143 ms
41,152 KB
testcase_08 AC 141 ms
41,560 KB
testcase_09 WA -
testcase_10 AC 147 ms
41,524 KB
testcase_11 AC 138 ms
41,232 KB
testcase_12 AC 139 ms
41,188 KB
testcase_13 AC 143 ms
41,644 KB
testcase_14 AC 138 ms
41,044 KB
testcase_15 AC 141 ms
41,240 KB
testcase_16 AC 135 ms
40,920 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