結果

問題 No.1071 ベホマラー
ユーザー tentententen
提出日時 2020-08-20 06:59:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 75,372 KB
実行使用メモリ 52,392 KB
最終ジャッジ日時 2024-10-12 22:15:34
合計ジャッジ時間 16,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,048 KB
testcase_01 AC 130 ms
52,392 KB
testcase_02 AC 130 ms
41,684 KB
testcase_03 AC 115 ms
41,188 KB
testcase_04 AC 130 ms
41,144 KB
testcase_05 AC 117 ms
40,308 KB
testcase_06 AC 131 ms
41,764 KB
testcase_07 AC 139 ms
41,280 KB
testcase_08 AC 137 ms
52,008 KB
testcase_09 AC 126 ms
41,172 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 651 ms
49,980 KB
testcase_21 WA -
testcase_22 AC 684 ms
49,672 KB
testcase_23 AC 643 ms
49,944 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		long x = sc.nextInt();
		long y = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = (sc.nextInt() - 1 + k - 1) / k;
		}
		Arrays.sort(arr);
		long sum = arr[n - 1];
		long min = arr[n - 1] * y;
		for (int i = n - 2; i >= 0; i--) {
		    min = Math.min(min, arr[i] * y + (sum - (n - i - 1) * arr[i]) * x);
		    sum += arr[i];
		}
		min = Math.min(min, sum * x);
		System.out.println(min);
	}
}
0