結果

問題 No.143 豆
ユーザー mikan765mikan765
提出日時 2017-07-05 12:40:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 73,804 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-07-23 10:47:35
合計ジャッジ時間 4,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,912 KB
testcase_01 AC 134 ms
54,288 KB
testcase_02 AC 136 ms
54,092 KB
testcase_03 AC 137 ms
54,020 KB
testcase_04 AC 136 ms
54,284 KB
testcase_05 AC 135 ms
54,136 KB
testcase_06 AC 136 ms
53,824 KB
testcase_07 AC 134 ms
54,284 KB
testcase_08 AC 132 ms
53,840 KB
testcase_09 AC 134 ms
54,012 KB
testcase_10 AC 139 ms
53,992 KB
testcase_11 AC 129 ms
54,064 KB
testcase_12 AC 140 ms
53,892 KB
testcase_13 AC 138 ms
53,832 KB
testcase_14 AC 145 ms
54,292 KB
testcase_15 AC 136 ms
54,264 KB
testcase_16 AC 128 ms
54,060 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