結果

問題 No.1736 Princess vs. Dragoness
ユーザー V_MelvilleV_Melville
提出日時 2021-11-12 22:26:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 3,682 ms
コンパイル使用メモリ 255,364 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 09:33:27
合計ジャッジ時間 4,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 4 ms
6,948 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 WA -
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::vector;
using ll = long long;

int main() {
	int n, a, b;
	ll x, y;
	cin >> n >> a >> b >> x >> y;
	
	vector<ll> h(n);
	rep(i, n) cin >> h[i];
	sort(h.rbegin(), h.rend());
	rep(i, n) {
		if (a) {
			h[i] -= x;
			a--;
		}
	}
	sort(h.rbegin(), h.rend());
	if (a) {
		rep(i, n) {
			if (a) {
				h[i] -= x;
				a--;
			}
		}
	}
	
	ll s = 0;
	rep(i, n) {
		if (h[i] <= 0) continue;
		s += h[i];
	}
	
	if (b*y >= s) puts("Yes");
	else puts("No");
	
	return 0;
}
0