結果

問題 No.143 豆
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 19:47:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 3,222 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-23 10:42:29
合計ジャッジ時間 6,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,992 KB
testcase_01 AC 132 ms
54,400 KB
testcase_02 AC 135 ms
54,160 KB
testcase_03 AC 140 ms
54,372 KB
testcase_04 AC 141 ms
54,120 KB
testcase_05 AC 142 ms
54,188 KB
testcase_06 AC 140 ms
53,960 KB
testcase_07 AC 142 ms
54,168 KB
testcase_08 AC 139 ms
53,728 KB
testcase_09 AC 139 ms
54,084 KB
testcase_10 AC 141 ms
54,280 KB
testcase_11 AC 134 ms
53,872 KB
testcase_12 AC 138 ms
54,028 KB
testcase_13 AC 138 ms
54,024 KB
testcase_14 AC 138 ms
53,996 KB
testcase_15 AC 139 ms
54,164 KB
testcase_16 AC 129 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Mame {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int K = s.nextInt(), N = s.nextInt(), F = s.nextInt(), sum = 0;
		for(int i = 0; i < F;i++){
			sum += s.nextInt();
		}
		
		if(sum > N*K){
			System.out.println(-1);
		}else{
			System.out.println(N*K - sum);
		}
	}

}
0