結果

問題 No.143 豆
ユーザー spaciaspacia
提出日時 2015-12-19 08:26:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 555 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-07-23 10:24:44
合計ジャッジ時間 3,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,888 KB
testcase_01 AC 54 ms
50,372 KB
testcase_02 AC 54 ms
50,260 KB
testcase_03 AC 55 ms
50,028 KB
testcase_04 AC 54 ms
50,356 KB
testcase_05 AC 53 ms
50,376 KB
testcase_06 AC 53 ms
50,024 KB
testcase_07 AC 54 ms
50,344 KB
testcase_08 AC 54 ms
50,276 KB
testcase_09 AC 53 ms
50,288 KB
testcase_10 AC 54 ms
50,104 KB
testcase_11 AC 53 ms
50,160 KB
testcase_12 AC 54 ms
50,316 KB
testcase_13 AC 54 ms
50,256 KB
testcase_14 AC 54 ms
49,896 KB
testcase_15 AC 54 ms
50,368 KB
testcase_16 AC 54 ms
50,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main143 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
			
		String[] line1 = br.readLine().split(" ");
		int k = Integer.parseInt(line1[0]);
		int n = Integer.parseInt(line1[1]);
		int f = Integer.parseInt(line1[2]);
		int beans = k * n, sum = 0;
		String[] line2 = br.readLine().split(" ");
		for (String s : line2)
			sum += Integer.parseInt(s);
		
		System.out.println(sum <= beans ? beans - sum : -1);
	}
}
0