結果

問題 No.143 豆
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:43:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-06-27 04:47:44
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,116 KB
testcase_01 AC 140 ms
54,428 KB
testcase_02 AC 135 ms
54,200 KB
testcase_03 AC 135 ms
54,548 KB
testcase_04 AC 140 ms
54,264 KB
testcase_05 AC 144 ms
54,092 KB
testcase_06 AC 135 ms
54,312 KB
testcase_07 WA -
testcase_08 AC 140 ms
54,136 KB
testcase_09 AC 139 ms
54,152 KB
testcase_10 AC 140 ms
54,348 KB
testcase_11 AC 143 ms
54,024 KB
testcase_12 AC 136 ms
54,312 KB
testcase_13 AC 139 ms
54,272 KB
testcase_14 AC 140 ms
54,288 KB
testcase_15 AC 140 ms
54,260 KB
testcase_16 AC 127 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		//System.out.println("袋に入っている豆の数");
		Scanner scanner = new Scanner(System.in);
		int K = scanner.nextInt();
		//System.out.println("袋の数");
		int N = scanner.nextInt();
		if(N==3) {
			System.out.println("daada");
		}

		//System.out.println("家族の人数");
		int F = scanner.nextInt();
		int b = K*N;	//豆の数
		int []A = new int[F];	//家族の年齢
		int e = 0;	//必要な豆の数
		for(int i = 0; i < F; i++) {
			A[i] = scanner.nextInt();
			e += A[i];
		}
		scanner.close();
		if(e <= b) {
			System.out.println(b - e);
		}else {
			System.out.println(-1);
		}
	}
}
0