結果

問題 No.143 豆
ユーザー marumaru
提出日時 2016-03-20 01:50:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 597 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-07-23 10:27:42
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,000 KB
testcase_01 AC 133 ms
54,212 KB
testcase_02 AC 135 ms
54,040 KB
testcase_03 AC 134 ms
54,284 KB
testcase_04 AC 134 ms
54,172 KB
testcase_05 AC 132 ms
54,004 KB
testcase_06 AC 133 ms
54,184 KB
testcase_07 AC 133 ms
53,872 KB
testcase_08 AC 131 ms
53,968 KB
testcase_09 AC 132 ms
54,084 KB
testcase_10 AC 132 ms
53,948 KB
testcase_11 AC 134 ms
53,748 KB
testcase_12 AC 134 ms
54,116 KB
testcase_13 AC 136 ms
54,268 KB
testcase_14 AC 133 ms
54,232 KB
testcase_15 AC 133 ms
54,076 KB
testcase_16 AC 131 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_143 {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		
		String n = scanner.nextLine();
		String m = scanner.nextLine();
		
		
		String[] array = n.split(" ");
		int sum = Integer.parseInt(array[0]) * Integer.parseInt(array[1]);
		
		String[] array_fam = m.split(" ");
		
		int sum_fam = 0;
		
		for (int i = 0; i < array_fam.length; i++) {
			sum_fam += Integer.parseInt(array_fam[i]);
		}
		
		
		if (sum >= sum_fam) {
			System.out.println(sum - sum_fam);
		} else {
			System.out.println(-1);
		}
	}
}
	
0