結果

問題 No.143 豆
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 01:00:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 76,036 KB
実行使用メモリ 44,228 KB
最終ジャッジ日時 2024-07-23 11:01:42
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,416 KB
testcase_01 AC 134 ms
41,652 KB
testcase_02 AC 114 ms
43,540 KB
testcase_03 AC 132 ms
41,304 KB
testcase_04 AC 131 ms
41,780 KB
testcase_05 AC 133 ms
41,572 KB
testcase_06 AC 127 ms
43,884 KB
testcase_07 AC 138 ms
41,664 KB
testcase_08 AC 132 ms
41,628 KB
testcase_09 AC 133 ms
41,832 KB
testcase_10 AC 133 ms
44,184 KB
testcase_11 AC 129 ms
41,640 KB
testcase_12 AC 123 ms
40,132 KB
testcase_13 AC 132 ms
41,344 KB
testcase_14 AC 134 ms
44,228 KB
testcase_15 AC 139 ms
41,472 KB
testcase_16 AC 124 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no143{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int k,n,f,a,i,s=0;
		k=stdIn.nextInt();
		n=stdIn.nextInt();
		f=stdIn.nextInt();
		for(i=0;i<f;i++) {
			a=stdIn.nextInt();
			s+=a;
		}
		f=k*n-s;
		if(f<0) i=-1;
		else i=f;
		System.out.print(i);
	}
}
0