結果

問題 No.143 豆
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 18:32:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 1,138 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 76,864 KB
実行使用メモリ 50,396 KB
最終ジャッジ日時 2024-07-23 10:54:27
合計ジャッジ時間 4,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,212 KB
testcase_01 AC 54 ms
50,348 KB
testcase_02 AC 54 ms
50,028 KB
testcase_03 AC 54 ms
50,364 KB
testcase_04 AC 56 ms
50,220 KB
testcase_05 AC 55 ms
50,304 KB
testcase_06 AC 56 ms
50,328 KB
testcase_07 AC 54 ms
49,916 KB
testcase_08 AC 54 ms
50,384 KB
testcase_09 AC 55 ms
50,040 KB
testcase_10 AC 55 ms
50,204 KB
testcase_11 AC 54 ms
50,236 KB
testcase_12 AC 56 ms
49,992 KB
testcase_13 AC 54 ms
50,020 KB
testcase_14 AC 54 ms
49,880 KB
testcase_15 AC 56 ms
50,396 KB
testcase_16 AC 54 ms
50,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00143 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		String[] input1 = new String[3];


		try {
			input1 = bufferedReader.readLine().split(" ");
			int[] input2 = new int[Integer.parseInt(input1[2])];
			input2 = toIntArray(bufferedReader.readLine().split(" "));
			int fullBeans = Integer.parseInt(input1[0]) * Integer.parseInt(input1[1]);
			System.out.println(eatFamily(fullBeans, input2));

		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static int[] toIntArray(String[] stringArray) {
		int[] intArray = new int[stringArray.length];
		for (int i = 0 ; i < stringArray.length ; i++) {
			intArray[i] = Integer.parseInt(stringArray[i]);
		}
		return intArray;
	}

	public static int eatFamily(int fullBeans, int[] ageArray) {
		for (int i = 0 ; i < ageArray.length ; i++) {
			fullBeans -= ageArray[i];
			if (Integer.signum(fullBeans) == -1) {
				return -1;
			}
		}
		return fullBeans;
	}

}
0