結果

問題 No.143 豆
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 21:42:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-06-28 04:02:41
合計ジャッジ時間 6,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,380 KB
testcase_01 AC 137 ms
41,248 KB
testcase_02 AC 131 ms
41,512 KB
testcase_03 AC 131 ms
41,848 KB
testcase_04 AC 135 ms
41,468 KB
testcase_05 AC 129 ms
41,452 KB
testcase_06 AC 131 ms
41,512 KB
testcase_07 AC 135 ms
41,428 KB
testcase_08 AC 137 ms
41,500 KB
testcase_09 WA -
testcase_10 AC 134 ms
41,464 KB
testcase_11 AC 133 ms
41,172 KB
testcase_12 AC 134 ms
41,268 KB
testcase_13 AC 141 ms
41,516 KB
testcase_14 AC 138 ms
41,736 KB
testcase_15 AC 136 ms
41,656 KB
testcase_16 AC 129 ms
41,300 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