結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:10:10
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 837 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 77,332 KB
実行使用メモリ 58,772 KB
最終ジャッジ日時 2024-05-04 09:04:14
合計ジャッジ時間 32,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,248 KB
testcase_01 AC 107 ms
41,580 KB
testcase_02 AC 107 ms
41,152 KB
testcase_03 RE -
testcase_04 AC 1,313 ms
58,772 KB
testcase_05 AC 1,333 ms
58,616 KB
testcase_06 AC 773 ms
57,000 KB
testcase_07 RE -
testcase_08 AC 878 ms
49,780 KB
testcase_09 AC 1,036 ms
56,972 KB
testcase_10 AC 710 ms
48,504 KB
testcase_11 RE -
testcase_12 AC 270 ms
48,228 KB
testcase_13 AC 913 ms
48,840 KB
testcase_14 AC 1,061 ms
53,264 KB
testcase_15 AC 1,254 ms
58,508 KB
testcase_16 RE -
testcase_17 AC 847 ms
48,712 KB
testcase_18 AC 723 ms
48,024 KB
testcase_19 AC 604 ms
48,576 KB
testcase_20 AC 540 ms
48,192 KB
testcase_21 AC 835 ms
49,020 KB
testcase_22 AC 1,174 ms
54,484 KB
testcase_23 AC 1,190 ms
58,672 KB
testcase_24 AC 1,340 ms
58,368 KB
testcase_25 AC 1,186 ms
58,352 KB
testcase_26 RE -
testcase_27 AC 1,346 ms
58,464 KB
testcase_28 AC 1,225 ms
58,428 KB
testcase_29 AC 1,152 ms
58,288 KB
testcase_30 AC 1,280 ms
58,456 KB
testcase_31 RE -
testcase_32 AC 1,218 ms
58,484 KB
testcase_33 AC 135 ms
41,460 KB
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 156 ms
42,380 KB
testcase_39 AC 198 ms
43,360 KB
testcase_40 AC 168 ms
41,668 KB
testcase_41 AC 174 ms
41,908 KB
testcase_42 AC 159 ms
42,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt(), A = sc.nextInt(), B = sc.nextInt(), X = sc.nextInt(), Y = sc.nextInt();
			int[] H = new int[N];
			for (int i = 0;i < N;++ i) H[i] = sc.nextInt();
			int ng = -1, ok = 1_000_000_000;
			while(ok - ng > 1) {
				int mid = ok + ng >> 1;
				int[] h = H.clone();
				int count = A;
				for (int i = 0;i < N;++ i) {
					h[i] = Math.max(0, h[i] - mid);
					int a = Math.min(count, h[i] / X);
					h[i] -= a * X;
					count -= a;
				}
				Arrays.sort(h);
				for (int i = 0;i < count;++ i) h[N - i - 1] = 0;
				long sum = 0;
				for (int i : h) sum += i;
				if ((long)B * Y >= sum) ok = mid;
				else ng = mid;
			}
			System.out.println(ok);
		}
	}
}
0