結果

問題 No.1736 Princess vs. Dragoness
ユーザー shinichishinichi
提出日時 2021-11-13 19:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,856 KB
最終ジャッジ日時 2024-11-27 19:14:29
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 48 ms
60,032 KB
testcase_04 AC 63 ms
68,096 KB
testcase_05 AC 53 ms
61,824 KB
testcase_06 AC 61 ms
66,048 KB
testcase_07 AC 80 ms
76,432 KB
testcase_08 AC 71 ms
71,936 KB
testcase_09 AC 85 ms
76,856 KB
testcase_10 AC 49 ms
60,928 KB
testcase_11 AC 91 ms
76,512 KB
testcase_12 AC 65 ms
67,968 KB
testcase_13 AC 61 ms
67,072 KB
testcase_14 AC 67 ms
69,760 KB
testcase_15 AC 48 ms
61,056 KB
testcase_16 AC 46 ms
59,520 KB
testcase_17 AC 71 ms
71,552 KB
testcase_18 AC 59 ms
66,048 KB
testcase_19 AC 62 ms
66,944 KB
testcase_20 AC 45 ms
57,984 KB
testcase_21 AC 76 ms
73,984 KB
testcase_22 AC 83 ms
76,544 KB
testcase_23 AC 53 ms
62,464 KB
testcase_24 AC 42 ms
53,248 KB
testcase_25 AC 63 ms
66,560 KB
testcase_26 AC 50 ms
61,928 KB
testcase_27 AC 53 ms
62,592 KB
testcase_28 AC 56 ms
64,128 KB
testcase_29 AC 59 ms
64,640 KB
testcase_30 AC 55 ms
63,872 KB
testcase_31 AC 57 ms
64,256 KB
testcase_32 AC 54 ms
63,872 KB
testcase_33 AC 40 ms
52,480 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


N, A, B, X, Y = map(int, input().split())
H = list(map(int, input().split()))
total = sum(H)

heap = []
for h in H:
    heapq.heappush(heap, -h)

while A > 0:
    d = -heapq.heappop(heap)
    if d < X:
        A -= 1
        d -= X
    else:
        A -= d // X
        d -= (d // X) * X
    heapq.heappush(heap, -d)

total = sum([-min(a, 0) for a in heap])

if total > Y*B:
    print("No")
else:
    print("Yes")

0