結果

問題 No.143 豆
ユーザー N_Gakuto7N_Gakuto7
提出日時 2020-04-02 22:45:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-06-28 15:22:32
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,200 KB
testcase_01 AC 126 ms
40,676 KB
testcase_02 AC 128 ms
41,180 KB
testcase_03 AC 119 ms
39,844 KB
testcase_04 AC 132 ms
41,448 KB
testcase_05 AC 131 ms
41,272 KB
testcase_06 AC 133 ms
41,608 KB
testcase_07 AC 132 ms
41,296 KB
testcase_08 AC 133 ms
41,208 KB
testcase_09 WA -
testcase_10 AC 131 ms
41,104 KB
testcase_11 AC 113 ms
39,824 KB
testcase_12 AC 122 ms
40,116 KB
testcase_13 AC 134 ms
41,512 KB
testcase_14 AC 132 ms
41,360 KB
testcase_15 AC 132 ms
41,472 KB
testcase_16 AC 125 ms
41,072 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