結果

問題 No.143 豆
ユーザー 水野嶺水野嶺
提出日時 2020-05-20 16:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 492 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2024-07-23 11:31:31
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,096 KB
testcase_01 AC 144 ms
54,092 KB
testcase_02 AC 139 ms
54,132 KB
testcase_03 AC 140 ms
54,256 KB
testcase_04 AC 142 ms
54,148 KB
testcase_05 AC 140 ms
56,004 KB
testcase_06 AC 142 ms
54,096 KB
testcase_07 AC 143 ms
54,272 KB
testcase_08 AC 141 ms
53,896 KB
testcase_09 AC 142 ms
54,056 KB
testcase_10 AC 143 ms
54,200 KB
testcase_11 AC 140 ms
54,076 KB
testcase_12 AC 143 ms
54,148 KB
testcase_13 AC 144 ms
53,896 KB
testcase_14 AC 144 ms
54,516 KB
testcase_15 AC 144 ms
54,292 KB
testcase_16 AC 135 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	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 nt=0;
		
		int[]  a = new int[f];
		for(int m=0;m < f;m++){
		a[m] = sc.nextInt();
		nt += a[m];
		}
		
		int total = k*n;
		
		if(nt > total){
		System.out.println("-1");
		}else {
		System.out.println(total-nt);
		}
	}
}
0