結果

問題 No.586 ダブルブッキング
コンテスト
ユーザー GodNegoto
提出日時 2019-11-28 17:31:01
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 475 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,220 ms
コンパイル使用メモリ 84,564 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2026-05-12 23:59:23
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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