結果

問題 No.1736 Princess vs. Dragoness
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-12 23:57:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-05-04 12:13:12
合計ジャッジ時間 21,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 97 ms
10,752 KB
testcase_04 AC 177 ms
11,008 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 TLE -
testcase_07 AC 1,704 ms
11,008 KB
testcase_08 AC 745 ms
11,008 KB
testcase_09 AC 788 ms
11,136 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 TLE -
testcase_12 AC 913 ms
10,880 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 510 ms
10,880 KB
testcase_16 AC 979 ms
10,752 KB
testcase_17 AC 1,798 ms
11,136 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, a, b, x, y = map(int, input().split())
h = list(map(int, input().split()))
for i in range(a): h[h.index(max(h))] -= x
for i in range(b):
	now = y
	for j in range(n):
		if h[j] < 0: continue
		tmp = min(h[j], now)
		now -= tmp
		h[j] -= tmp
print("Yes" if max(h) <= 0 else "No")
		
0