結果

問題 No.1071 ベホマラー
ユーザー tentententen
提出日時 2020-08-20 07:00:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 4,363 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 61,448 KB
最終ジャッジ日時 2024-10-12 22:16:54
合計ジャッジ時間 16,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,052 KB
testcase_01 AC 128 ms
53,948 KB
testcase_02 AC 131 ms
53,888 KB
testcase_03 AC 126 ms
53,656 KB
testcase_04 AC 114 ms
52,952 KB
testcase_05 AC 126 ms
53,664 KB
testcase_06 AC 135 ms
53,904 KB
testcase_07 AC 140 ms
53,912 KB
testcase_08 AC 138 ms
54,100 KB
testcase_09 AC 116 ms
52,896 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 592 ms
59,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 699 ms
59,572 KB
testcase_18 AC 654 ms
59,356 KB
testcase_19 AC 687 ms
59,608 KB
testcase_20 AC 636 ms
60,832 KB
testcase_21 WA -
testcase_22 AC 639 ms
60,896 KB
testcase_23 AC 632 ms
60,520 KB
testcase_24 AC 656 ms
59,680 KB
権限があれば一括ダウンロードができます

ソースコード

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 - (long)(n - i - 1) * arr[i]) * x);
		    sum += arr[i];
		}
		min = Math.min(min, sum * x);
		System.out.println(min);
	}
}
0