結果

問題 No.143 豆
ユーザー jonki324jonki324
提出日時 2018-06-04 10:40:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 591 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-07-23 10:59:56
合計ジャッジ時間 5,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,252 KB
testcase_01 AC 141 ms
54,256 KB
testcase_02 AC 142 ms
54,120 KB
testcase_03 AC 144 ms
54,028 KB
testcase_04 AC 142 ms
54,080 KB
testcase_05 AC 144 ms
54,328 KB
testcase_06 AC 142 ms
54,428 KB
testcase_07 AC 148 ms
54,272 KB
testcase_08 AC 143 ms
54,296 KB
testcase_09 AC 145 ms
54,428 KB
testcase_10 AC 145 ms
54,120 KB
testcase_11 AC 139 ms
54,196 KB
testcase_12 AC 143 ms
54,340 KB
testcase_13 AC 143 ms
54,256 KB
testcase_14 AC 143 ms
54,160 KB
testcase_15 AC 147 ms
54,212 KB
testcase_16 AC 140 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int k = scan.nextInt();
        int n = scan.nextInt();
        int f = scan.nextInt();
        int[] a = new int[f];
        for (int i = 0; i < f; i++) {
            a[i] = scan.nextInt();
        }
        int ret = k * n;
        for (int i = 0; i < f; i++) {
            ret -= a[i];
            if (ret < 0) {
                ret = -1;
                break;
            }
        }
        System.out.println(ret);
        scan.close();
    }
}
0