結果

問題 No.143 豆
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 14:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 431 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-07-23 10:51:27
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,136 KB
testcase_01 AC 142 ms
53,948 KB
testcase_02 AC 139 ms
54,140 KB
testcase_03 AC 141 ms
54,144 KB
testcase_04 AC 141 ms
53,960 KB
testcase_05 AC 142 ms
54,120 KB
testcase_06 AC 142 ms
53,984 KB
testcase_07 AC 142 ms
53,844 KB
testcase_08 AC 144 ms
54,404 KB
testcase_09 AC 143 ms
54,080 KB
testcase_10 AC 142 ms
54,324 KB
testcase_11 AC 137 ms
54,232 KB
testcase_12 AC 141 ms
54,260 KB
testcase_13 AC 143 ms
53,900 KB
testcase_14 AC 142 ms
53,884 KB
testcase_15 AC 150 ms
54,172 KB
testcase_16 AC 136 ms
53,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

0