結果

問題 No.143 豆
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 21:06:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 41,944 KB
最終ジャッジ日時 2024-07-01 14:25:51
合計ジャッジ時間 5,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,256 KB
testcase_01 AC 138 ms
41,664 KB
testcase_02 AC 134 ms
41,444 KB
testcase_03 AC 138 ms
41,512 KB
testcase_04 AC 137 ms
41,652 KB
testcase_05 AC 135 ms
41,352 KB
testcase_06 AC 143 ms
41,944 KB
testcase_07 AC 140 ms
41,272 KB
testcase_08 AC 139 ms
41,652 KB
testcase_09 AC 140 ms
41,152 KB
testcase_10 AC 139 ms
41,464 KB
testcase_11 AC 137 ms
41,344 KB
testcase_12 AC 140 ms
41,260 KB
testcase_13 AC 139 ms
41,464 KB
testcase_14 AC 138 ms
41,444 KB
testcase_15 AC 142 ms
41,472 KB
testcase_16 AC 130 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int mame = sc.nextInt() * sc.nextInt();
		int num = sc.nextInt();
		for(int i = 0 ; i < num ; i++) mame -= sc.nextInt();
		if(mame < 0) {
			System.out.println(-1);
		}else {
			System.out.print(mame);
		}
	}
}
0