結果

問題 No.143 豆
ユーザー n_gojon_gojo
提出日時 2020-04-10 15:38:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 642 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-23 11:30:04
合計ジャッジ時間 6,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,436 KB
testcase_01 AC 142 ms
54,108 KB
testcase_02 AC 140 ms
54,100 KB
testcase_03 AC 142 ms
54,092 KB
testcase_04 AC 143 ms
54,204 KB
testcase_05 AC 146 ms
53,916 KB
testcase_06 AC 145 ms
54,284 KB
testcase_07 AC 144 ms
53,924 KB
testcase_08 AC 145 ms
53,836 KB
testcase_09 AC 144 ms
54,224 KB
testcase_10 AC 146 ms
53,868 KB
testcase_11 AC 139 ms
53,896 KB
testcase_12 AC 140 ms
53,740 KB
testcase_13 AC 145 ms
54,096 KB
testcase_14 AC 142 ms
54,092 KB
testcase_15 AC 143 ms
54,012 KB
testcase_16 AC 134 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class No143 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int k = sc.nextInt();
        int n = sc.nextInt();
        int f = sc.nextInt();
        
        int ageSum = 0;

        for (int i=1; i<=f; i++) {
            ageSum += sc.nextInt();
        }

        int ans = k*n - ageSum;
        if (ans < 0) {
            ans = -1;
        }
        System.out.println(ans);
    }
}
0