結果

問題 No.143 豆
ユーザー ffmm00ffmm00
提出日時 2015-06-10 03:00:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-07-23 10:19:55
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,684 KB
testcase_01 AC 140 ms
54,240 KB
testcase_02 AC 140 ms
53,984 KB
testcase_03 AC 142 ms
54,052 KB
testcase_04 AC 144 ms
54,004 KB
testcase_05 AC 135 ms
53,904 KB
testcase_06 AC 140 ms
53,968 KB
testcase_07 AC 135 ms
54,044 KB
testcase_08 AC 142 ms
54,148 KB
testcase_09 AC 142 ms
54,116 KB
testcase_10 AC 145 ms
54,280 KB
testcase_11 AC 138 ms
54,384 KB
testcase_12 AC 143 ms
54,264 KB
testcase_13 AC 144 ms
53,824 KB
testcase_14 AC 145 ms
53,888 KB
testcase_15 AC 145 ms
54,016 KB
testcase_16 AC 136 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N143 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		int k = sca.nextInt();
		int n = sca.nextInt();
		int f = sca.nextInt();

		k = k * n;

		for (int i = 0; i < f; i++) {
			k -= sca.nextInt();
			if (k < 0) {
				System.out.println("-1");
				return;
			}
		}

		System.out.println(k);

	}
}
0