結果

問題 No.143 豆
ユーザー YOSHIYOSHI
提出日時 2021-03-02 18:47:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 533 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 38,388 KB
最終ジャッジ日時 2024-10-03 01:56:10
合計ジャッジ時間 5,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
38,076 KB
testcase_01 AC 65 ms
37,956 KB
testcase_02 AC 63 ms
38,388 KB
testcase_03 AC 59 ms
37,368 KB
testcase_04 AC 61 ms
37,732 KB
testcase_05 AC 63 ms
37,996 KB
testcase_06 AC 71 ms
37,844 KB
testcase_07 AC 61 ms
38,232 KB
testcase_08 AC 63 ms
38,156 KB
testcase_09 AC 63 ms
37,616 KB
testcase_10 AC 63 ms
37,868 KB
testcase_11 AC 62 ms
38,276 KB
testcase_12 AC 62 ms
37,840 KB
testcase_13 AC 63 ms
38,340 KB
testcase_14 AC 65 ms
38,256 KB
testcase_15 AC 67 ms
37,860 KB
testcase_16 AC 67 ms
38,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000143_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int[] arr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int zan = arr[0] * arr[1] - Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).sum();
		System.out.println(zan < 0 ? -1 : zan);
	}
}
0