結果

問題 No.586 ダブルブッキング
ユーザー YamaKasa
提出日時 2018-05-08 20:04:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-06-28 02:29:43
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int P1 = scan.nextInt();
		int P2 = scan.nextInt();
		int N = scan.nextInt();
		int []R = new int[N];
		for(int i = 0; i < N; i++) {
			R[i] = scan.nextInt();
		}
		scan.close();
		Arrays.sort(R);

		int temp = R[0];
		int cnt = 0;
		for(int i = 1; i < N; i++) {
			if(temp == R[i]) {
				cnt ++;
			}else {
				temp = R[i];
			}
		}
		int ans = (P1 + P2) * cnt;
		System.out.println(ans);
	}
}
0