結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,112 KB
testcase_01 AC 122 ms
41,336 KB
testcase_02 AC 102 ms
40,288 KB
testcase_03 AC 107 ms
40,012 KB
testcase_04 AC 119 ms
41,164 KB
testcase_05 AC 113 ms
40,860 KB
testcase_06 AC 122 ms
41,396 KB
testcase_07 AC 126 ms
41,616 KB
testcase_08 AC 125 ms
41,132 KB
testcase_09 WA -
testcase_10 AC 120 ms
41,280 KB
testcase_11 AC 117 ms
41,136 KB
testcase_12 AC 103 ms
39,936 KB
testcase_13 AC 114 ms
41,352 KB
testcase_14 AC 120 ms
41,488 KB
testcase_15 AC 115 ms
41,016 KB
testcase_16 AC 105 ms
41,256 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();
            total -= a;
        	
        }
        
        if(total  <= 0) {
            System.out.println(-1);
            
        }else {
            System.out.println(total);
        }
    }
}
0