結果

問題 No.143 豆
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 16:41:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-07-23 10:46:30
合計ジャッジ時間 5,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,916 KB
testcase_01 AC 144 ms
54,020 KB
testcase_02 AC 140 ms
54,136 KB
testcase_03 AC 139 ms
54,184 KB
testcase_04 AC 142 ms
53,844 KB
testcase_05 AC 143 ms
54,080 KB
testcase_06 AC 143 ms
53,820 KB
testcase_07 AC 144 ms
53,964 KB
testcase_08 AC 143 ms
53,884 KB
testcase_09 AC 143 ms
53,940 KB
testcase_10 AC 143 ms
54,120 KB
testcase_11 AC 141 ms
54,204 KB
testcase_12 AC 142 ms
53,864 KB
testcase_13 AC 146 ms
54,104 KB
testcase_14 AC 143 ms
53,960 KB
testcase_15 AC 145 ms
53,924 KB
testcase_16 AC 134 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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 sum = 0;
    for(int i = 0; i < F; i++) {
      sum += sc.nextInt();
    }
    int ans = Math.max(-1, K * N - sum);
    System.out.println(ans);
  }
}
0