結果

問題 No.143 豆
ユーザー r.suzukir.suzuki
提出日時 2015-12-29 22:41:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 562 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-07-23 10:24:54
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,572 KB
testcase_01 AC 140 ms
54,228 KB
testcase_02 AC 133 ms
54,268 KB
testcase_03 AC 132 ms
53,888 KB
testcase_04 AC 140 ms
54,360 KB
testcase_05 AC 115 ms
52,936 KB
testcase_06 AC 131 ms
53,900 KB
testcase_07 AC 115 ms
54,192 KB
testcase_08 AC 138 ms
54,288 KB
testcase_09 AC 133 ms
54,300 KB
testcase_10 AC 135 ms
54,216 KB
testcase_11 AC 134 ms
54,144 KB
testcase_12 AC 133 ms
54,200 KB
testcase_13 AC 136 ms
54,276 KB
testcase_14 AC 136 ms
54,204 KB
testcase_15 AC 141 ms
54,044 KB
testcase_16 AC 131 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Family {
	int age;

	Family(int i) {
		this.age = i;
	}
}

public class No_143 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int beans = sc.nextInt() * sc.nextInt();
		Family[] yuki = new Family[sc.nextInt()];
		boolean b = true;

		for (int i = 0; i < yuki.length; i++) {
			yuki[i] = new Family(sc.nextInt());
			beans -= yuki[i].age;
			if (beans < 0) {
				b = false;
				break;
			}
		}

		if (b) {
			System.out.println(beans);
		} else {
			System.out.println(-1);
		}
		sc.close();

	}

}
0