結果

問題 No.143 豆
ユーザー yuuki121yuuki121
提出日時 2020-12-24 23:25:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 582 bytes
コンパイル時間 2,696 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 51,328 KB
最終ジャッジ日時 2024-07-23 11:40:11
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
51,024 KB
testcase_01 AC 68 ms
51,292 KB
testcase_02 AC 70 ms
51,064 KB
testcase_03 AC 69 ms
50,780 KB
testcase_04 AC 70 ms
51,044 KB
testcase_05 AC 69 ms
51,168 KB
testcase_06 AC 70 ms
51,316 KB
testcase_07 AC 69 ms
51,104 KB
testcase_08 AC 70 ms
51,328 KB
testcase_09 AC 70 ms
50,980 KB
testcase_10 AC 69 ms
51,232 KB
testcase_11 AC 70 ms
51,328 KB
testcase_12 AC 70 ms
50,900 KB
testcase_13 AC 71 ms
51,192 KB
testcase_14 AC 70 ms
50,984 KB
testcase_15 AC 68 ms
50,976 KB
testcase_16 AC 68 ms
51,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		//K N F
		int[] teisu = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int count = teisu[0] * teisu[1];
		//年齢
		int sum = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).sum();

		System.out.println((count - sum) >= 0 ? count - sum : "-1");
	}
}
0