結果

問題 No.143 豆
ユーザー bellbell
提出日時 2021-02-11 11:33:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 532 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-07-23 11:41:14
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,824 KB
testcase_01 AC 133 ms
54,084 KB
testcase_02 AC 131 ms
54,160 KB
testcase_03 AC 132 ms
54,084 KB
testcase_04 AC 137 ms
53,884 KB
testcase_05 AC 140 ms
53,856 KB
testcase_06 AC 138 ms
54,224 KB
testcase_07 AC 140 ms
54,024 KB
testcase_08 AC 138 ms
53,996 KB
testcase_09 AC 141 ms
53,992 KB
testcase_10 AC 138 ms
54,076 KB
testcase_11 AC 133 ms
54,400 KB
testcase_12 AC 137 ms
54,248 KB
testcase_13 AC 138 ms
54,500 KB
testcase_14 AC 141 ms
54,112 KB
testcase_15 AC 143 ms
54,300 KB
testcase_16 AC 132 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int K =sc.nextInt();
        int N =sc.nextInt();
        int F=sc.nextInt();
        int A=0;
        int min=0;

        for(int i=0; i<F; i++){
            A=sc.nextInt();
            if(min<=K*N){
                min+=A;
            }
        }

        if(min<=K*N){
        System.out.println(K*N-min);
        }else{
            System.out.println(-1);
        }
        sc.close();
    }
}
0