結果

問題 No.143 豆
ユーザー NewbiekunNewbiekun
提出日時 2019-02-20 17:37:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 4,021 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-07-23 11:09:20
合計ジャッジ時間 6,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,836 KB
testcase_01 AC 133 ms
53,728 KB
testcase_02 AC 138 ms
54,072 KB
testcase_03 AC 137 ms
54,184 KB
testcase_04 AC 138 ms
54,240 KB
testcase_05 AC 135 ms
54,176 KB
testcase_06 AC 135 ms
54,184 KB
testcase_07 AC 137 ms
54,016 KB
testcase_08 AC 139 ms
54,028 KB
testcase_09 AC 137 ms
54,064 KB
testcase_10 AC 136 ms
54,384 KB
testcase_11 AC 135 ms
54,308 KB
testcase_12 AC 140 ms
54,316 KB
testcase_13 AC 139 ms
54,092 KB
testcase_14 AC 137 ms
54,460 KB
testcase_15 AC 142 ms
53,964 KB
testcase_16 AC 127 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143
{
	public static void main(String args[])
	{
		Scanner sc = new Scanner(System.in);
		int mame = sc.nextInt() * sc.nextInt();
		int f = sc.nextInt(); // 人数
		for( int i = 0; i < f; i++ ){ mame -= sc.nextInt(); }

// 0以上なら残りのmameの数を表示、それ以外は-1を表示
		System.out.println( (mame >= 0) ? mame : -1 );
	}
}
0