結果

問題 No.143 豆
ユーザー sasakkisasakki
提出日時 2016-04-14 15:35:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-04 08:40:31
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,192 KB
testcase_01 AC 127 ms
41,160 KB
testcase_02 AC 107 ms
40,096 KB
testcase_03 AC 118 ms
41,580 KB
testcase_04 AC 117 ms
41,116 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 109 ms
41,240 KB
testcase_09 AC 106 ms
40,548 KB
testcase_10 AC 116 ms
41,384 KB
testcase_11 AC 115 ms
41,168 KB
testcase_12 AC 113 ms
41,128 KB
testcase_13 AC 117 ms
41,548 KB
testcase_14 AC 115 ms
41,104 KB
testcase_15 AC 114 ms
41,528 KB
testcase_16 AC 106 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);

		int K = Integer.parseInt(sc.next());
		int N = Integer.parseInt(sc.next());
		int F = Integer.parseInt(sc.next());

		int sum = 0;

		for(int i = 0; i < F; i++){
			sum += Integer.parseInt(sc.next());
		}

		System.out.println( K * N - sum );
	}
}
0