結果

問題 No.143 豆
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 16:01:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-05-06 21:07:17
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,432 KB
testcase_01 AC 114 ms
41,188 KB
testcase_02 AC 112 ms
41,316 KB
testcase_03 AC 113 ms
40,948 KB
testcase_04 AC 127 ms
41,212 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 117 ms
40,912 KB
testcase_09 AC 119 ms
41,540 KB
testcase_10 AC 114 ms
41,176 KB
testcase_11 AC 112 ms
41,140 KB
testcase_12 AC 118 ms
41,352 KB
testcase_13 AC 126 ms
41,312 KB
testcase_14 AC 115 ms
41,040 KB
testcase_15 AC 114 ms
40,920 KB
testcase_16 AC 107 ms
41,036 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