結果

問題 No.1071 ベホマラー
ユーザー ks2mks2m
提出日時 2020-06-05 21:36:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 70,824 KB
最終ジャッジ日時 2024-05-09 20:18:31
合計ジャッジ時間 16,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,124 KB
testcase_01 AC 128 ms
54,252 KB
testcase_02 AC 120 ms
54,204 KB
testcase_03 AC 112 ms
54,176 KB
testcase_04 AC 114 ms
52,804 KB
testcase_05 AC 104 ms
54,212 KB
testcase_06 AC 110 ms
52,992 KB
testcase_07 AC 129 ms
54,200 KB
testcase_08 AC 129 ms
54,064 KB
testcase_09 AC 110 ms
53,540 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 699 ms
65,628 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 875 ms
69,132 KB
testcase_18 AC 873 ms
70,824 KB
testcase_19 AC 897 ms
69,032 KB
testcase_20 AC 648 ms
60,636 KB
testcase_21 WA -
testcase_22 AC 642 ms
61,412 KB
testcase_23 AC 641 ms
61,216 KB
testcase_24 AC 831 ms
68,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int x = sc.nextInt();
		int y = sc.nextInt();
		TreeMap<Integer, Integer> map = new TreeMap<>();
		long sum = 0;
		for (int i = 0; i < n; i++) {
			int a = sc.nextInt();
			int b = (a + k - 2) / k;
			if (map.containsKey(b)) {
				map.put(b, map.get(b) + 1);
			} else {
				map.put(b, 1);
			}
			sum += b;
		}
		sc.close();

		long ans = sum * x;
		long val = ans;
		int pre = 0;
		int rem = n;
		for (int key : map.keySet()) {
			long d = key - pre;
			long add = d * y;
			long sub = d * rem * x;
			pre = key;
			rem -= map.get(key);
			val += add - sub;
			ans = Math.min(ans, val);
		}
		System.out.println(ans);
	}
}
0