結果

問題 No.143 豆
ユーザー 37zigen37zigen
提出日時 2016-03-31 11:21:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 394 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-07-23 10:28:13
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,076 KB
testcase_01 AC 137 ms
54,240 KB
testcase_02 AC 136 ms
53,984 KB
testcase_03 AC 135 ms
54,088 KB
testcase_04 AC 139 ms
54,092 KB
testcase_05 AC 141 ms
54,168 KB
testcase_06 AC 138 ms
54,396 KB
testcase_07 AC 137 ms
54,364 KB
testcase_08 AC 136 ms
53,880 KB
testcase_09 AC 135 ms
54,100 KB
testcase_10 AC 135 ms
54,080 KB
testcase_11 AC 134 ms
54,160 KB
testcase_12 AC 122 ms
53,084 KB
testcase_13 AC 137 ms
54,120 KB
testcase_14 AC 138 ms
54,416 KB
testcase_15 AC 138 ms
54,236 KB
testcase_16 AC 128 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder143;
import java.util.*;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int k=sc.nextInt();//一袋K粒
		int n=sc.nextInt();//N袋
		int f=sc.nextInt();//家族人数
		int sum=0;
		for(int i=0;i<f;i++){
			sum+=sc.nextInt();
		}
		if(k*n>=sum){
			System.out.println(k*n-sum);
		}else{
			System.out.println(-1);
		}
	}
}
0