結果

問題 No.143 豆
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:01:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-07-23 10:54:19
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,156 KB
testcase_01 AC 137 ms
54,000 KB
testcase_02 AC 136 ms
54,016 KB
testcase_03 AC 136 ms
53,892 KB
testcase_04 AC 138 ms
53,904 KB
testcase_05 AC 139 ms
54,540 KB
testcase_06 AC 139 ms
54,572 KB
testcase_07 AC 140 ms
54,176 KB
testcase_08 AC 138 ms
54,328 KB
testcase_09 AC 138 ms
54,188 KB
testcase_10 AC 134 ms
54,172 KB
testcase_11 AC 130 ms
53,896 KB
testcase_12 AC 137 ms
53,952 KB
testcase_13 AC 138 ms
54,252 KB
testcase_14 AC 139 ms
54,012 KB
testcase_15 AC 139 ms
54,352 KB
testcase_16 AC 132 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		int mame = a * b;
		int n = sc.nextInt();
		for (int i=0; i<n; i++) {
			int temp = sc.nextInt();
			mame -= temp;
		}
		System.out.println(mame<0?"-1":mame);
	}
}
0