結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,408 KB
testcase_01 AC 140 ms
54,184 KB
testcase_02 AC 129 ms
54,160 KB
testcase_03 AC 136 ms
53,960 KB
testcase_04 AC 137 ms
54,084 KB
testcase_05 AC 131 ms
54,156 KB
testcase_06 AC 129 ms
54,004 KB
testcase_07 AC 139 ms
54,132 KB
testcase_08 AC 134 ms
54,368 KB
testcase_09 AC 135 ms
54,300 KB
testcase_10 AC 138 ms
54,228 KB
testcase_11 AC 118 ms
52,964 KB
testcase_12 AC 124 ms
53,576 KB
testcase_13 AC 135 ms
53,904 KB
testcase_14 AC 138 ms
54,212 KB
testcase_15 AC 139 ms
54,116 KB
testcase_16 AC 113 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

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

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
    	int K = sc.nextInt();
    	int N = sc.nextInt();
    	// 人数
    	int F = sc.nextInt();
    	
    	int sum = 0;
    	
    	for (int i=0;i < F;i++) {
    		 sum += sc.nextInt();	
    	}
    	System.out.println((0 <= K * N - sum) ? K * N - sum : -1);
	}
}
0