結果

問題 No.143 豆
ユーザー lotokalotoka
提出日時 2021-06-04 22:10:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 631 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-19 15:02:01
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,484 KB
testcase_01 AC 137 ms
41,440 KB
testcase_02 AC 138 ms
41,340 KB
testcase_03 AC 141 ms
41,480 KB
testcase_04 AC 141 ms
41,328 KB
testcase_05 AC 141 ms
41,500 KB
testcase_06 AC 150 ms
41,560 KB
testcase_07 AC 144 ms
41,616 KB
testcase_08 AC 142 ms
41,244 KB
testcase_09 AC 143 ms
41,440 KB
testcase_10 AC 146 ms
41,424 KB
testcase_11 AC 137 ms
41,304 KB
testcase_12 AC 141 ms
41,260 KB
testcase_13 AC 140 ms
41,728 KB
testcase_14 AC 150 ms
41,336 KB
testcase_15 AC 143 ms
41,500 KB
testcase_16 AC 139 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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