結果

問題 No.143 豆
ユーザー ko kiko ki
提出日時 2021-01-17 17:41:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-05-07 07:15:27
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,144 KB
testcase_01 AC 147 ms
54,104 KB
testcase_02 AC 143 ms
53,976 KB
testcase_03 AC 142 ms
54,172 KB
testcase_04 AC 146 ms
54,428 KB
testcase_05 AC 151 ms
54,048 KB
testcase_06 AC 149 ms
54,128 KB
testcase_07 AC 154 ms
54,360 KB
testcase_08 AC 146 ms
54,312 KB
testcase_09 WA -
testcase_10 AC 150 ms
54,144 KB
testcase_11 AC 143 ms
53,988 KB
testcase_12 AC 147 ms
54,112 KB
testcase_13 AC 150 ms
54,000 KB
testcase_14 AC 147 ms
54,172 KB
testcase_15 AC 154 ms
54,132 KB
testcase_16 AC 137 ms
54,172 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