結果

問題 No.143 豆
ユーザー NaruYNaruY
提出日時 2016-10-22 15:26:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 754 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 75,296 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-07-23 10:37:49
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,924 KB
testcase_01 AC 134 ms
54,024 KB
testcase_02 AC 134 ms
53,772 KB
testcase_03 AC 132 ms
54,236 KB
testcase_04 AC 137 ms
54,156 KB
testcase_05 AC 138 ms
54,036 KB
testcase_06 AC 140 ms
54,028 KB
testcase_07 AC 134 ms
53,976 KB
testcase_08 AC 137 ms
54,296 KB
testcase_09 AC 139 ms
54,240 KB
testcase_10 AC 135 ms
53,988 KB
testcase_11 AC 130 ms
54,264 KB
testcase_12 AC 135 ms
54,220 KB
testcase_13 AC 135 ms
53,976 KB
testcase_14 AC 135 ms
54,196 KB
testcase_15 AC 135 ms
54,248 KB
testcase_16 AC 128 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
 
public class Main {
    public static void main (String[] args) throws IOException
    {
    	Scanner sc = new Scanner(System.in);
    	
    	int K = sc.nextInt();
    	int N = sc.nextInt();
    	int F = sc.nextInt();
    	int S = 0;
    	
    	int af[] = new int[F+1];
    	
    	for (int i = 1 ; i <= F ; i++){
    		af[i] = sc.nextInt();
    	}
    	
    	for (int j = 1 ; j <= F ; j++){
    		S += af[j];
    	}
    	
    	if (K*N >= S){
    		System.out.println(K*N - S);
    	}
    	else {
    		System.out.println("-1");
    	}
    	
    	
    	
    }	
}
    
   
0