結果

問題 No.586 ダブルブッキング
ユーザー GrenacheGrenache
提出日時 2017-11-03 22:24:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 3,813 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-05-02 05:01:27
合計ジャッジ時間 5,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,452 KB
testcase_01 AC 149 ms
41,760 KB
testcase_02 AC 145 ms
41,580 KB
testcase_03 AC 152 ms
41,620 KB
testcase_04 AC 132 ms
41,740 KB
testcase_05 AC 145 ms
41,240 KB
testcase_06 AC 140 ms
41,556 KB
testcase_07 AC 146 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder586 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int p1 = sc.nextInt();
		int p2 = sc.nextInt();
		int n = sc.nextInt();

		int[] r = new int[n];
		int[] rr = new int[999];
		for (int i = 0; i < n; i++) {
			r[i] = sc.nextInt();

			rr[r[i] - 1]++;
		}

		long ans = 0;
		for (int i = 0; i < 999; i++) {
			if (rr[i] > 1) {
				ans += (long)(p1 + p2) * (rr[i] - 1);
			}
		}

		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0