結果

問題 No.143 豆
ユーザー packer_jppacker_jp
提出日時 2017-01-21 19:09:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-07-23 10:40:14
合計ジャッジ時間 6,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,968 KB
testcase_01 AC 142 ms
54,140 KB
testcase_02 AC 127 ms
53,144 KB
testcase_03 AC 143 ms
54,216 KB
testcase_04 AC 143 ms
54,300 KB
testcase_05 AC 144 ms
54,004 KB
testcase_06 AC 144 ms
54,124 KB
testcase_07 AC 143 ms
54,416 KB
testcase_08 AC 146 ms
54,044 KB
testcase_09 AC 145 ms
54,096 KB
testcase_10 AC 142 ms
54,104 KB
testcase_11 AC 144 ms
54,040 KB
testcase_12 AC 143 ms
54,176 KB
testcase_13 AC 146 ms
54,096 KB
testcase_14 AC 144 ms
54,112 KB
testcase_15 AC 144 ms
54,144 KB
testcase_16 AC 135 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Practice {
    public static void main(String args[]){
        Scanner scanner=new Scanner(System.in);
        int K=scanner.nextInt(),N=scanner.nextInt(),F=scanner.nextInt();
        int Fsum=0;
        for(int i=0;i<F;i++){
            Fsum+=scanner.nextInt();
        }
        if(K*N-Fsum<0){
            System.out.println(-1);
        }else{
            System.out.println(K*N-Fsum);
        }
    }
}
0