結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,400 KB
testcase_01 AC 127 ms
41,540 KB
testcase_02 AC 121 ms
41,372 KB
testcase_03 AC 122 ms
41,376 KB
testcase_04 AC 120 ms
41,452 KB
testcase_05 AC 129 ms
41,304 KB
testcase_06 AC 121 ms
41,152 KB
testcase_07 AC 126 ms
41,500 KB
testcase_08 AC 126 ms
41,188 KB
testcase_09 WA -
testcase_10 AC 128 ms
41,580 KB
testcase_11 AC 123 ms
41,328 KB
testcase_12 AC 135 ms
41,040 KB
testcase_13 AC 117 ms
41,312 KB
testcase_14 AC 125 ms
41,472 KB
testcase_15 AC 134 ms
41,336 KB
testcase_16 AC 114 ms
41,024 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