結果

問題 No.143 豆
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-24 22:00:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 395 bytes
コンパイル時間 3,137 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-07-23 10:21:24
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,100 KB
testcase_01 AC 136 ms
54,428 KB
testcase_02 AC 135 ms
53,876 KB
testcase_03 AC 137 ms
54,136 KB
testcase_04 AC 136 ms
54,040 KB
testcase_05 AC 136 ms
53,992 KB
testcase_06 AC 137 ms
53,996 KB
testcase_07 AC 139 ms
54,228 KB
testcase_08 AC 139 ms
54,420 KB
testcase_09 AC 136 ms
54,396 KB
testcase_10 AC 133 ms
54,144 KB
testcase_11 AC 135 ms
54,136 KB
testcase_12 AC 140 ms
53,108 KB
testcase_13 AC 138 ms
54,408 KB
testcase_14 AC 143 ms
54,208 KB
testcase_15 AC 140 ms
54,380 KB
testcase_16 AC 130 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int K = sc.nextInt();
		int N = sc.nextInt();
		int F = sc.nextInt();
		
		int sum=K*N;
		
		for(int i=0; i<F;i++)
			sum=sum-sc.nextInt();
		
		if(sum>=0)
			System.out.println(sum);
		else
			System.out.println(-1);
		
	}

}
0