結果

問題 No.143 豆
ユーザー jimanojimano
提出日時 2015-10-13 23:09:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-07-21 07:38:53
合計ジャッジ時間 6,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,932 KB
testcase_01 AC 145 ms
41,784 KB
testcase_02 AC 143 ms
41,704 KB
testcase_03 AC 143 ms
41,400 KB
testcase_04 AC 142 ms
41,508 KB
testcase_05 AC 143 ms
41,180 KB
testcase_06 AC 144 ms
41,504 KB
testcase_07 AC 144 ms
41,424 KB
testcase_08 AC 143 ms
41,832 KB
testcase_09 WA -
testcase_10 AC 139 ms
41,280 KB
testcase_11 AC 137 ms
41,624 KB
testcase_12 AC 140 ms
41,012 KB
testcase_13 AC 143 ms
41,040 KB
testcase_14 AC 144 ms
41,504 KB
testcase_15 AC 145 ms
41,448 KB
testcase_16 AC 134 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143 {
	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 i = 0;

		for(int j = 0; j < age.length ; j++){
			age[j] = sc.nextInt();
			i += age[j];
		}
		System.out.println( (k * n > i) ? k * n - i : -1 );
	}
}
0