結果

問題 No.143 豆
ユーザー hippolover02hippolover02
提出日時 2022-07-20 17:29:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-07-02 13:51:17
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,956 KB
testcase_01 AC 138 ms
41,280 KB
testcase_02 AC 137 ms
40,988 KB
testcase_03 AC 137 ms
41,208 KB
testcase_04 AC 138 ms
41,148 KB
testcase_05 AC 138 ms
41,368 KB
testcase_06 AC 139 ms
41,252 KB
testcase_07 AC 138 ms
41,404 KB
testcase_08 AC 137 ms
41,224 KB
testcase_09 WA -
testcase_10 AC 135 ms
41,316 KB
testcase_11 AC 133 ms
41,120 KB
testcase_12 AC 122 ms
40,292 KB
testcase_13 AC 138 ms
41,228 KB
testcase_14 AC 137 ms
41,044 KB
testcase_15 AC 138 ms
41,468 KB
testcase_16 AC 129 ms
41,012 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