結果

問題 No.143 豆
ユーザー ikawaiikawai
提出日時 2023-09-04 14:41:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 435 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-22 13:00:53
合計ジャッジ時間 4,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,912 KB
testcase_01 AC 128 ms
54,284 KB
testcase_02 AC 106 ms
52,988 KB
testcase_03 AC 118 ms
53,904 KB
testcase_04 AC 118 ms
54,128 KB
testcase_05 AC 119 ms
54,044 KB
testcase_06 AC 118 ms
54,276 KB
testcase_07 AC 123 ms
54,228 KB
testcase_08 AC 118 ms
53,972 KB
testcase_09 AC 119 ms
54,020 KB
testcase_10 AC 117 ms
54,312 KB
testcase_11 AC 116 ms
54,372 KB
testcase_12 AC 124 ms
54,160 KB
testcase_13 AC 123 ms
54,048 KB
testcase_14 AC 123 ms
53,800 KB
testcase_15 AC 122 ms
54,120 KB
testcase_16 AC 113 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Wandbox
{
    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 ans = k * n;
    	
    	for (int i = 0; i < f; i++) {
    		ans -= sc.nextInt();
    	} 
    	if (ans >= 0) {
    		System.out.println(ans);
    	} else {
    		System.out.println(-1);
    	}
    	
    }
}
0