結果

問題 No.143 豆
ユーザー ko kiko ki
提出日時 2021-01-17 17:36:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 2,722 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-05-07 07:08:24
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,996 KB
testcase_01 AC 115 ms
41,068 KB
testcase_02 AC 112 ms
41,232 KB
testcase_03 AC 105 ms
40,204 KB
testcase_04 AC 119 ms
41,172 KB
testcase_05 AC 101 ms
39,580 KB
testcase_06 AC 122 ms
41,628 KB
testcase_07 AC 119 ms
41,368 KB
testcase_08 AC 120 ms
41,556 KB
testcase_09 WA -
testcase_10 AC 114 ms
41,176 KB
testcase_11 AC 103 ms
40,264 KB
testcase_12 AC 104 ms
39,964 KB
testcase_13 AC 130 ms
41,676 KB
testcase_14 AC 114 ms
41,144 KB
testcase_15 AC 113 ms
41,092 KB
testcase_16 AC 106 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int k = sc.nextInt();

        int n = sc.nextInt();
        
        int f = sc.nextInt();
        
        int total = k * n;
        
        int eat = 0;
        
        int remaining = 0;
        
        for(int i = 0; i < f; i++) {
            int a = sc.nextInt();
            eat += a;
        }
        remaining = total - eat;
        
        if(remaining  <= 0) {
            System.out.println(-1);
            
        }else {
            System.out.println(remaining);
        }
    }
}
0