結果

問題 No.143 豆
ユーザー packer_jppacker_jp
提出日時 2017-01-21 19:07:00
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-12-23 04:22:20
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,172 KB
testcase_01 AC 153 ms
41,164 KB
testcase_02 AC 152 ms
41,476 KB
testcase_03 AC 152 ms
41,404 KB
testcase_04 AC 153 ms
41,472 KB
testcase_05 AC 150 ms
41,716 KB
testcase_06 AC 151 ms
41,672 KB
testcase_07 AC 151 ms
41,468 KB
testcase_08 AC 151 ms
41,376 KB
testcase_09 WA -
testcase_10 AC 152 ms
41,420 KB
testcase_11 AC 146 ms
41,448 KB
testcase_12 AC 149 ms
41,224 KB
testcase_13 AC 152 ms
41,440 KB
testcase_14 AC 154 ms
41,200 KB
testcase_15 AC 158 ms
41,728 KB
testcase_16 AC 145 ms
41,556 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