結果

問題 No.143 豆
ユーザー tentententen
提出日時 2020-11-10 16:48:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-07-23 11:38:40
合計ジャッジ時間 4,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,248 KB
testcase_01 AC 138 ms
53,996 KB
testcase_02 AC 134 ms
54,052 KB
testcase_03 AC 134 ms
53,780 KB
testcase_04 AC 139 ms
54,028 KB
testcase_05 AC 139 ms
54,316 KB
testcase_06 AC 135 ms
54,072 KB
testcase_07 AC 134 ms
53,908 KB
testcase_08 AC 134 ms
54,196 KB
testcase_09 AC 134 ms
54,048 KB
testcase_10 AC 142 ms
54,020 KB
testcase_11 AC 133 ms
53,860 KB
testcase_12 AC 132 ms
53,888 KB
testcase_13 AC 134 ms
53,868 KB
testcase_14 AC 143 ms
54,012 KB
testcase_15 AC 139 ms
53,968 KB
testcase_16 AC 114 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int all = sc.nextInt() * sc.nextInt();
        int n = sc.nextInt();
        for (int i = 0; i < n; i++) {
            all -= sc.nextInt();
        }
        System.out.println(Math.max(all, - 1));
    }
}
0