結果

問題 No.1736 Princess vs. Dragoness
ユーザー roarisroaris
提出日時 2021-11-12 21:32:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 70,840 KB
最終ジャッジ日時 2024-11-25 12:16:28
合計ジャッジ時間 2,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,420 KB
testcase_01 AC 39 ms
53,828 KB
testcase_02 AC 38 ms
53,992 KB
testcase_03 AC 41 ms
55,928 KB
testcase_04 AC 48 ms
65,004 KB
testcase_05 AC 39 ms
53,932 KB
testcase_06 AC 46 ms
66,168 KB
testcase_07 AC 53 ms
69,252 KB
testcase_08 AC 49 ms
65,252 KB
testcase_09 AC 51 ms
67,932 KB
testcase_10 AC 42 ms
53,600 KB
testcase_11 AC 55 ms
70,840 KB
testcase_12 AC 47 ms
65,860 KB
testcase_13 AC 49 ms
67,004 KB
testcase_14 AC 53 ms
68,860 KB
testcase_15 AC 46 ms
63,644 KB
testcase_16 AC 42 ms
55,100 KB
testcase_17 AC 50 ms
67,384 KB
testcase_18 AC 48 ms
66,092 KB
testcase_19 AC 48 ms
65,640 KB
testcase_20 AC 39 ms
55,272 KB
testcase_21 AC 49 ms
66,648 KB
testcase_22 AC 52 ms
67,732 KB
testcase_23 AC 48 ms
67,308 KB
testcase_24 AC 39 ms
54,168 KB
testcase_25 AC 44 ms
61,228 KB
testcase_26 AC 49 ms
66,320 KB
testcase_27 AC 51 ms
68,576 KB
testcase_28 AC 49 ms
66,432 KB
testcase_29 AC 49 ms
66,700 KB
testcase_30 AC 48 ms
66,256 KB
testcase_31 AC 44 ms
62,592 KB
testcase_32 AC 49 ms
66,144 KB
testcase_33 AC 38 ms
54,584 KB
testcase_34 AC 38 ms
54,140 KB
testcase_35 AC 37 ms
53,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, A, B, X, Y = map(int, input().split())
H = list(map(int, input().split()))
l = []

for Hi in H:
    l.append((X, Hi//X))
    l.append((Hi%X, 1))

l.sort(reverse=True)
decr = 0

for v, c in l:
    if A>c:
        decr += v*c
        A -= c
    else:
        decr += v*A
        break
    
if sum(H)-decr<=B*Y:
    print('Yes')
else:
    print('No')
0