結果

問題 No.143 豆
ユーザー hippolover02hippolover02
提出日時 2022-07-20 17:30:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 571 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-07-02 13:51:30
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,080 KB
testcase_01 AC 136 ms
41,240 KB
testcase_02 AC 135 ms
41,204 KB
testcase_03 AC 135 ms
41,472 KB
testcase_04 AC 138 ms
41,132 KB
testcase_05 AC 135 ms
41,408 KB
testcase_06 AC 137 ms
41,140 KB
testcase_07 AC 138 ms
41,440 KB
testcase_08 AC 138 ms
41,344 KB
testcase_09 AC 135 ms
41,268 KB
testcase_10 AC 136 ms
41,428 KB
testcase_11 AC 138 ms
41,340 KB
testcase_12 AC 133 ms
41,392 KB
testcase_13 AC 136 ms
41,112 KB
testcase_14 AC 137 ms
41,252 KB
testcase_15 AC 140 ms
41,620 KB
testcase_16 AC 128 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner sc = new Scanner(System.in);
        int bean = sc.nextInt();
        int pack = sc.nextInt();
        int fam = sc.nextInt();
        int cnt = 0;
        
        for(int i=0;i<fam;i++){
            cnt += sc.nextInt();
        }
        if((bean * pack - cnt) >= 0){
            System.out.println(bean * pack - cnt);
        } else{
            System.out.println(-1);
        }
    }
}
0