結果

問題 No.143 豆
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-24 21:51:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 4,127 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-08 13:05:35
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,944 KB
testcase_01 AC 116 ms
41,144 KB
testcase_02 AC 111 ms
40,804 KB
testcase_03 AC 116 ms
41,064 KB
testcase_04 AC 127 ms
41,216 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 114 ms
40,796 KB
testcase_09 AC 114 ms
40,808 KB
testcase_10 AC 118 ms
40,824 KB
testcase_11 AC 112 ms
40,924 KB
testcase_12 AC 104 ms
40,000 KB
testcase_13 AC 118 ms
41,344 KB
testcase_14 AC 120 ms
41,192 KB
testcase_15 AC 120 ms
41,516 KB
testcase_16 AC 97 ms
40,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No143 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int K = sc.nextInt();
		int N = sc.nextInt();
		int F = sc.nextInt();
		
		int sum=K*N;
		
		for(int i=0; i<F;i++){
			if(sum>=0){
				sum=sum-sc.nextInt();
			}else{
				System.out.println(-1);
			}
		}
		System.out.println(sum);
		
	}

}
0