結果

問題 No.143 豆
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:55:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-07-23 10:36:14
合計ジャッジ時間 6,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,968 KB
testcase_01 AC 143 ms
54,192 KB
testcase_02 AC 142 ms
54,120 KB
testcase_03 AC 141 ms
53,980 KB
testcase_04 AC 140 ms
53,732 KB
testcase_05 AC 141 ms
54,136 KB
testcase_06 AC 143 ms
54,196 KB
testcase_07 AC 144 ms
54,516 KB
testcase_08 AC 142 ms
53,952 KB
testcase_09 AC 142 ms
54,100 KB
testcase_10 AC 142 ms
54,096 KB
testcase_11 AC 137 ms
54,336 KB
testcase_12 AC 138 ms
54,076 KB
testcase_13 AC 144 ms
54,424 KB
testcase_14 AC 139 ms
54,084 KB
testcase_15 AC 144 ms
54,124 KB
testcase_16 AC 132 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int s = sc.nextInt() * sc.nextInt(), n = sc.nextInt();
		for (int i = 0; i < n; i++) {
			s -= sc.nextInt();
		}
		if (s < 0) {
			System.out.println(-1);
		} else {
			System.out.println(s);
		}
	}
}
0