結果

問題 No.143 豆
ユーザー koukonkokoukonko
提出日時 2015-12-12 16:15:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 669 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 50,368 KB
最終ジャッジ日時 2024-07-23 10:24:20
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,220 KB
testcase_01 AC 52 ms
50,164 KB
testcase_02 AC 52 ms
50,368 KB
testcase_03 AC 55 ms
50,184 KB
testcase_04 AC 52 ms
49,924 KB
testcase_05 AC 51 ms
50,280 KB
testcase_06 AC 52 ms
50,336 KB
testcase_07 AC 53 ms
49,976 KB
testcase_08 AC 53 ms
50,096 KB
testcase_09 AC 53 ms
50,220 KB
testcase_10 AC 54 ms
50,296 KB
testcase_11 AC 54 ms
50,136 KB
testcase_12 AC 52 ms
50,256 KB
testcase_13 AC 52 ms
50,352 KB
testcase_14 AC 53 ms
49,940 KB
testcase_15 AC 53 ms
49,796 KB
testcase_16 AC 53 ms
50,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {

			String[] line = read.readLine().split(" ");
			int count = Integer.parseInt(line[0]) * Integer.parseInt(line[1]);
			int f = Integer.parseInt(line[2]);

			line = read.readLine().split(" ");
			int total = 0;
			for(int i = 0; i < f; ++i){
				total += Integer.parseInt(line[i]);
			}

			if(total > count){
				System.out.println(-1);
			}else{
				System.out.println(count - total);
			}

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0