結果

問題 No.143 豆
ユーザー yuuki121yuuki121
提出日時 2020-12-24 23:24:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 79,756 KB
実行使用メモリ 51,164 KB
最終ジャッジ日時 2024-09-21 17:06:27
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,988 KB
testcase_01 AC 63 ms
37,756 KB
testcase_02 AC 63 ms
37,800 KB
testcase_03 AC 62 ms
37,776 KB
testcase_04 AC 61 ms
38,136 KB
testcase_05 AC 62 ms
37,880 KB
testcase_06 AC 62 ms
38,032 KB
testcase_07 AC 65 ms
38,068 KB
testcase_08 AC 62 ms
37,844 KB
testcase_09 WA -
testcase_10 AC 62 ms
37,996 KB
testcase_11 AC 63 ms
38,056 KB
testcase_12 AC 63 ms
37,712 KB
testcase_13 AC 64 ms
37,828 KB
testcase_14 AC 64 ms
37,724 KB
testcase_15 AC 62 ms
38,080 KB
testcase_16 AC 62 ms
37,952 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