結果

問題 No.143 豆
ユーザー packer_jppacker_jp
提出日時 2017-01-21 19:07:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 3,023 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-06-02 08:53:28
合計ジャッジ時間 5,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,200 KB
testcase_01 AC 128 ms
41,360 KB
testcase_02 AC 107 ms
40,152 KB
testcase_03 AC 126 ms
40,176 KB
testcase_04 AC 125 ms
41,408 KB
testcase_05 AC 125 ms
41,316 KB
testcase_06 AC 132 ms
41,412 KB
testcase_07 AC 130 ms
41,316 KB
testcase_08 AC 127 ms
41,268 KB
testcase_09 WA -
testcase_10 AC 125 ms
41,568 KB
testcase_11 AC 107 ms
40,444 KB
testcase_12 AC 124 ms
39,976 KB
testcase_13 AC 127 ms
41,724 KB
testcase_14 AC 130 ms
41,344 KB
testcase_15 AC 133 ms
41,404 KB
testcase_16 AC 120 ms
41,356 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