結果
問題 | No.143 豆 |
ユーザー |
![]() |
提出日時 | 2018-11-19 15:53:38 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 140 ms / 1,000 ms |
コード長 | 546 bytes |
コンパイル時間 | 2,239 ms |
コンパイル使用メモリ | 74,848 KB |
実行使用メモリ | 54,412 KB |
最終ジャッジ日時 | 2024-07-23 11:06:17 |
合計ジャッジ時間 | 5,235 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
import java.util.*;public class Main {public static void main(String[] args) {// 自分の得意な言語で// Let's チャレンジ!!Scanner sc = new Scanner(System.in);int K = sc.nextInt();int N = sc.nextInt();int n = K*N;int F = sc.nextInt();int a = 0;for(int i = 0;i < F;i++){n-=sc.nextInt();}if(n<0){System.out.println("-1");}else{System.out.println(n);}}}