結果

問題 No.143 豆
ユーザー Koketti1Koketti1
提出日時 2017-02-05 17:20:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 460 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-23 10:41:08
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,024 KB
testcase_01 AC 134 ms
54,176 KB
testcase_02 AC 136 ms
54,344 KB
testcase_03 AC 133 ms
54,240 KB
testcase_04 AC 136 ms
54,000 KB
testcase_05 AC 138 ms
53,980 KB
testcase_06 AC 136 ms
54,124 KB
testcase_07 AC 139 ms
54,264 KB
testcase_08 AC 140 ms
54,036 KB
testcase_09 AC 134 ms
53,896 KB
testcase_10 AC 136 ms
54,284 KB
testcase_11 AC 132 ms
54,392 KB
testcase_12 AC 135 ms
53,988 KB
testcase_13 AC 135 ms
54,332 KB
testcase_14 AC 133 ms
54,016 KB
testcase_15 AC 138 ms
54,108 KB
testcase_16 AC 129 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int K = scanner.nextInt();
		int N = scanner.nextInt();
		int F = scanner.nextInt();
		int beansSum = K * N;
		int ageSum = 0;
		
		for(int i = 0;i < F;i++){
			ageSum += scanner.nextInt();
		}
		if(beansSum < ageSum ){
			System.out.println(-1);
		}else{
			System.out.println(beansSum - ageSum);
		}
		scanner.close();
	}
}
0