結果

問題 No.143 豆
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 16:01:40
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 50,044 KB
最終ジャッジ日時 2024-11-29 07:14:14
合計ジャッジ時間 5,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,256 KB
testcase_01 AC 142 ms
41,536 KB
testcase_02 AC 138 ms
41,292 KB
testcase_03 AC 139 ms
41,484 KB
testcase_04 AC 142 ms
41,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 144 ms
41,412 KB
testcase_09 AC 143 ms
41,260 KB
testcase_10 AC 145 ms
41,536 KB
testcase_11 AC 135 ms
41,264 KB
testcase_12 AC 141 ms
41,632 KB
testcase_13 AC 146 ms
41,664 KB
testcase_14 AC 142 ms
41,760 KB
testcase_15 AC 142 ms
41,332 KB
testcase_16 AC 132 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int k = sc.nextInt();
        int n = sc.nextInt();
        int f = sc.nextInt();
        int[] a = new int[f];
        for(int i = 0; i < f; i++)
        	a[i] = sc.nextInt();
        
        int ans = Integer.MAX_VALUE;
        int beans = k * n;
        for(int ai : a) {
        	beans -= ai;
        	if(beans < 0) ans = -1;
        }
        
        System.out.println(Math.min(ans, beans));
    }

}
0