結果

問題 No.143 豆
ユーザー kameyama_skameyama_s
提出日時 2023-04-28 14:23:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-04-28 19:38:05
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,092 KB
testcase_01 WA -
testcase_02 AC 134 ms
41,252 KB
testcase_03 AC 138 ms
41,772 KB
testcase_04 AC 139 ms
41,648 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 136 ms
41,424 KB
testcase_12 AC 124 ms
41,256 KB
testcase_13 AC 145 ms
41,408 KB
testcase_14 AC 141 ms
41,316 KB
testcase_15 AC 143 ms
41,236 KB
testcase_16 AC 131 ms
41,456 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