結果

問題 No.143 豆
ユーザー AOW_MIRROR_O5AOW_MIRROR_O5
提出日時 2018-03-08 16:41:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 75,456 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-07-23 10:55:55
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,244 KB
testcase_01 AC 143 ms
54,264 KB
testcase_02 AC 141 ms
54,076 KB
testcase_03 AC 141 ms
54,116 KB
testcase_04 AC 142 ms
54,432 KB
testcase_05 AC 141 ms
54,268 KB
testcase_06 AC 142 ms
53,920 KB
testcase_07 AC 143 ms
53,836 KB
testcase_08 AC 145 ms
54,092 KB
testcase_09 AC 144 ms
54,140 KB
testcase_10 AC 143 ms
54,392 KB
testcase_11 AC 140 ms
54,148 KB
testcase_12 AC 141 ms
54,356 KB
testcase_13 AC 143 ms
54,384 KB
testcase_14 AC 146 ms
54,188 KB
testcase_15 AC 146 ms
54,288 KB
testcase_16 AC 132 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class paiza7 {
    public static void main(String[] args) {
		
        Scanner sc = new Scanner(System.in);
        int K = sc.nextInt();
		int N = sc.nextInt();
		int F = sc.nextInt();
		int age[] = new int[F];
		int TotalAge = 0;
		
		for(int i=0;i<F;i++){
			age[i] = sc.nextInt();
			TotalAge += age[i];
		}
		
		if((K*N)>=TotalAge){
			System.out.println(K*N-TotalAge);
		}else{
			System.out.println("-1");
		}
    }
}
0