結果

問題 No.586 ダブルブッキング
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 17:31:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-04-29 09:38:59
合計ジャッジ時間 5,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,132 KB
testcase_01 AC 132 ms
41,112 KB
testcase_02 AC 134 ms
41,356 KB
testcase_03 AC 142 ms
41,604 KB
testcase_04 AC 129 ms
41,260 KB
testcase_05 AC 144 ms
41,400 KB
testcase_06 AC 131 ms
41,496 KB
testcase_07 AC 134 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int P1 = sc.nextInt();
		int P2 = sc.nextInt();
		int N = sc.nextInt();
		List<Integer> list = new ArrayList<Integer>();
		
		for(int i=0; i < N; i++) {
			list.add(sc.nextInt());
		}
		
		Set<Integer> set = new HashSet<Integer>(list);
		int AN = list.size() - set.size();
		int c = AN * P1 + AN * P2;
		System.out.println(c);
	}
}
0