結果

問題 No.143 豆
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 22:39:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 548 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-07-23 10:17:36
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,140 KB
testcase_01 AC 138 ms
54,312 KB
testcase_02 AC 133 ms
54,148 KB
testcase_03 AC 135 ms
54,128 KB
testcase_04 AC 135 ms
53,912 KB
testcase_05 AC 133 ms
54,132 KB
testcase_06 AC 138 ms
54,000 KB
testcase_07 AC 139 ms
54,324 KB
testcase_08 AC 138 ms
54,332 KB
testcase_09 AC 136 ms
54,296 KB
testcase_10 AC 138 ms
54,324 KB
testcase_11 AC 132 ms
54,036 KB
testcase_12 AC 132 ms
54,288 KB
testcase_13 AC 137 ms
54,088 KB
testcase_14 AC 139 ms
54,096 KB
testcase_15 AC 137 ms
54,148 KB
testcase_16 AC 126 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int k = koko.nextInt();
       int n = koko.nextInt();
       int f = koko.nextInt();
       int[] a = new int[f];
       int rest;
       int all = 0;
       for(int i = 0; i<f; i++){
           a[i] = koko.nextInt();
           all = all + a[i];
       }
       if(k*n>=all){
           rest = k*n-all;
       }else{
           rest = -1;
       }
       System.out.println(rest);
    }
}
0