結果

問題 No.1736 Princess vs. Dragoness
ユーザー ibukitiibukiti
提出日時 2021-11-12 21:34:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 65,956 KB
最終ジャッジ日時 2024-05-04 07:34:24
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,992 KB
testcase_01 AC 32 ms
53,012 KB
testcase_02 AC 32 ms
52,996 KB
testcase_03 AC 35 ms
58,708 KB
testcase_04 AC 43 ms
60,428 KB
testcase_05 AC 37 ms
58,304 KB
testcase_06 AC 46 ms
62,668 KB
testcase_07 AC 57 ms
63,476 KB
testcase_08 AC 47 ms
63,964 KB
testcase_09 AC 56 ms
64,172 KB
testcase_10 AC 35 ms
58,976 KB
testcase_11 AC 65 ms
65,956 KB
testcase_12 AC 41 ms
60,304 KB
testcase_13 AC 49 ms
62,272 KB
testcase_14 AC 47 ms
60,608 KB
testcase_15 AC 39 ms
59,408 KB
testcase_16 AC 41 ms
61,544 KB
testcase_17 AC 43 ms
61,756 KB
testcase_18 AC 42 ms
60,896 KB
testcase_19 AC 43 ms
61,680 KB
testcase_20 AC 42 ms
59,704 KB
testcase_21 AC 53 ms
63,396 KB
testcase_22 AC 57 ms
63,072 KB
testcase_23 AC 44 ms
59,272 KB
testcase_24 AC 37 ms
57,024 KB
testcase_25 AC 43 ms
62,668 KB
testcase_26 AC 48 ms
63,188 KB
testcase_27 AC 48 ms
62,956 KB
testcase_28 AC 39 ms
60,860 KB
testcase_29 AC 37 ms
58,556 KB
testcase_30 AC 40 ms
61,724 KB
testcase_31 AC 45 ms
64,108 KB
testcase_32 AC 50 ms
63,140 KB
testcase_33 AC 34 ms
53,360 KB
testcase_34 AC 32 ms
53,416 KB
testcase_35 AC 34 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y=map(int,input().split())
h=list(map(int,input().split()))
h.sort(reverse=True)
for i in range(a):
    if max(h)-x<0:
        h[h.index(max(h))]=0
    else :
        h[h.index(max(h))]-=x

if sum(h)>y*b:
    print("No")
else:
    print("Yes")
0