結果

問題 No.143 豆
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 21:43:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 595 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 75,584 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-23 10:59:08
合計ジャッジ時間 6,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,112 KB
testcase_01 AC 139 ms
54,036 KB
testcase_02 AC 133 ms
53,984 KB
testcase_03 AC 133 ms
54,056 KB
testcase_04 AC 137 ms
54,380 KB
testcase_05 AC 137 ms
54,280 KB
testcase_06 AC 136 ms
54,408 KB
testcase_07 AC 139 ms
54,268 KB
testcase_08 AC 134 ms
54,280 KB
testcase_09 AC 138 ms
54,012 KB
testcase_10 AC 135 ms
54,140 KB
testcase_11 AC 132 ms
54,184 KB
testcase_12 AC 136 ms
54,152 KB
testcase_13 AC 135 ms
54,044 KB
testcase_14 AC 135 ms
54,096 KB
testcase_15 AC 135 ms
54,172 KB
testcase_16 AC 133 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Setsubun{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);

        int K = sc.nextInt();
        int N = sc.nextInt();
        int num_beans = K*N;

        int F = sc.nextInt();
        int num_eats = 0;
        for(int i = 0; i < F; i++){
            num_eats += sc.nextInt();
        }

        if(num_beans >= num_eats){
            System.out.println(num_beans - num_eats);
        }else{
            System.out.println("-1");
        }
    }
}
0