結果

問題 No.143 豆
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-24 14:12:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 41,880 KB
最終ジャッジ日時 2024-09-21 15:10:22
合計ジャッジ時間 4,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,100 KB
testcase_01 AC 128 ms
41,460 KB
testcase_02 AC 125 ms
41,492 KB
testcase_03 AC 122 ms
41,024 KB
testcase_04 AC 128 ms
41,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 126 ms
41,392 KB
testcase_09 AC 125 ms
41,424 KB
testcase_10 AC 126 ms
41,284 KB
testcase_11 AC 122 ms
41,180 KB
testcase_12 AC 110 ms
40,136 KB
testcase_13 AC 132 ms
41,880 KB
testcase_14 AC 132 ms
41,256 KB
testcase_15 AC 123 ms
41,408 KB
testcase_16 AC 102 ms
40,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int K = sc.nextInt(), N = sc.nextInt(), F = sc.nextInt();
		
		int[] A = new int[F];
		
		for(int i = 0; i < F; i++) {
			A[i] = sc.nextInt();
		}
		
		int sum = K * N;
		
		for(int i = 0; i < F; i++) {
			sum-=A[i];
		}
		
		System.out.println(sum);
	}
}
0