結果

問題 No.143 豆
ユーザー ko kiko ki
提出日時 2021-01-17 17:43:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 738 bytes
コンパイル時間 5,285 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-05-07 07:19:06
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,952 KB
testcase_01 AC 128 ms
54,012 KB
testcase_02 AC 112 ms
52,844 KB
testcase_03 AC 126 ms
54,192 KB
testcase_04 AC 119 ms
53,720 KB
testcase_05 AC 128 ms
54,228 KB
testcase_06 AC 130 ms
53,872 KB
testcase_07 AC 134 ms
54,116 KB
testcase_08 AC 125 ms
54,288 KB
testcase_09 WA -
testcase_10 AC 129 ms
54,200 KB
testcase_11 AC 121 ms
54,000 KB
testcase_12 AC 118 ms
53,060 KB
testcase_13 AC 130 ms
53,896 KB
testcase_14 AC 126 ms
54,232 KB
testcase_15 AC 134 ms
54,468 KB
testcase_16 AC 123 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