結果

問題 No.143 豆
ユーザー mikan765mikan765
提出日時 2017-07-05 12:38:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-05 19:49:22
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,920 KB
testcase_01 AC 126 ms
54,368 KB
testcase_02 AC 117 ms
54,024 KB
testcase_03 AC 121 ms
54,212 KB
testcase_04 AC 117 ms
53,572 KB
testcase_05 AC 121 ms
54,240 KB
testcase_06 AC 119 ms
53,864 KB
testcase_07 AC 116 ms
53,776 KB
testcase_08 AC 123 ms
54,176 KB
testcase_09 WA -
testcase_10 AC 123 ms
54,140 KB
testcase_11 AC 116 ms
53,884 KB
testcase_12 AC 115 ms
53,260 KB
testcase_13 AC 123 ms
54,076 KB
testcase_14 AC 121 ms
54,248 KB
testcase_15 AC 121 ms
54,196 KB
testcase_16 AC 105 ms
52,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		int n = sc.nextInt();
		int mame = k*n;
		int f = sc.nextInt();
		int sum = 0;
		for(int i=0;i<f;i++){
			sum += sc.nextInt();
		}
		if(mame>sum){
			System.out.println(mame-sum);
		}else{
			System.out.println(-1);
		}
	}
}
0