結果

問題 No.143 豆
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 22:25:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 551 bytes
コンパイル時間 3,190 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-07-23 10:54:43
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,768 KB
testcase_01 AC 127 ms
53,988 KB
testcase_02 AC 132 ms
54,036 KB
testcase_03 AC 128 ms
54,156 KB
testcase_04 AC 128 ms
54,032 KB
testcase_05 AC 133 ms
54,096 KB
testcase_06 AC 128 ms
53,812 KB
testcase_07 AC 136 ms
54,100 KB
testcase_08 AC 131 ms
54,020 KB
testcase_09 AC 130 ms
54,036 KB
testcase_10 AC 134 ms
54,072 KB
testcase_11 AC 125 ms
54,084 KB
testcase_12 AC 127 ms
54,056 KB
testcase_13 AC 130 ms
54,096 KB
testcase_14 AC 133 ms
53,940 KB
testcase_15 AC 132 ms
54,084 KB
testcase_16 AC 126 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        int beanNum = Integer.valueOf(sc.next());
        int hukuroNum = Integer.valueOf(sc.next());
        int familyNum = Integer.valueOf(sc.next());

        int rest = beanNum * hukuroNum;
        for(int i=0; i<familyNum; i++) {
        	rest -= Integer.valueOf(sc.next());
        }
        if(rest < 0) {
        	System.out.println("-1");
        } else {
        	System.out.println(rest);
        }
	}
}
0