結果

問題 No.143 豆
ユーザー N_Gakuto7N_Gakuto7
提出日時 2020-04-02 22:46:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 677 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 79,624 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-23 11:29:17
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,668 KB
testcase_01 AC 129 ms
54,292 KB
testcase_02 AC 130 ms
54,096 KB
testcase_03 AC 129 ms
54,364 KB
testcase_04 AC 130 ms
54,252 KB
testcase_05 AC 131 ms
54,156 KB
testcase_06 AC 131 ms
54,152 KB
testcase_07 AC 130 ms
54,360 KB
testcase_08 AC 130 ms
54,272 KB
testcase_09 AC 133 ms
54,176 KB
testcase_10 AC 133 ms
54,144 KB
testcase_11 AC 129 ms
54,200 KB
testcase_12 AC 131 ms
53,784 KB
testcase_13 AC 127 ms
53,940 KB
testcase_14 AC 127 ms
54,112 KB
testcase_15 AC 129 ms
53,976 KB
testcase_16 AC 122 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
         
class Main{
    public static void main(String[] args) {
        
        try(Scanner sc = new Scanner(System.in)){

            int perBz = Integer.parseInt(sc.next());
            int bz = Integer.parseInt(sc.next());
            int fam = Integer.parseInt(sc.next());
            
            int ageSum = 0;
            for(int i = 0; i < fam; i++){
                ageSum += Integer.parseInt(sc.next());
            }

            int ans = perBz * bz - ageSum; 
            if(ans >= 0) System.out.println(ans);
            else System.out.println(-1);

        }catch(Exception e){
            e.printStackTrace();
        }        
    }
}
0