結果

問題 No.143 豆
ユーザー fal_rndfal_rnd
提出日時 2016-11-07 18:21:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-05-03 22:56:43
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,056 KB
testcase_01 AC 141 ms
41,136 KB
testcase_02 AC 139 ms
41,136 KB
testcase_03 AC 138 ms
41,000 KB
testcase_04 AC 137 ms
41,232 KB
testcase_05 AC 140 ms
41,392 KB
testcase_06 AC 139 ms
41,116 KB
testcase_07 AC 138 ms
41,016 KB
testcase_08 AC 141 ms
41,600 KB
testcase_09 WA -
testcase_10 AC 141 ms
41,244 KB
testcase_11 AC 124 ms
39,988 KB
testcase_12 AC 138 ms
41,232 KB
testcase_13 AC 136 ms
41,276 KB
testcase_14 AC 141 ms
41,260 KB
testcase_15 AC 137 ms
41,152 KB
testcase_16 AC 129 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class C{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		int in=s.nextInt()*s.nextInt();
		s.next();
		while(s.hasNext()) {
			in-=s.nextInt();
		}
		if(in>0)
			System.out.println(in);
		else
			System.out.println(-1);
	}
}
0