結果

問題 No.1736 Princess vs. Dragoness
ユーザー customfolkcustomfolk
提出日時 2021-11-12 21:36:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 67,728 KB
最終ジャッジ日時 2024-11-25 17:24:12
合計ジャッジ時間 3,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,956 KB
testcase_01 AC 46 ms
62,052 KB
testcase_02 AC 46 ms
61,396 KB
testcase_03 AC 45 ms
61,888 KB
testcase_04 AC 52 ms
66,772 KB
testcase_05 AC 47 ms
61,860 KB
testcase_06 AC 52 ms
66,792 KB
testcase_07 AC 55 ms
66,924 KB
testcase_08 AC 52 ms
65,780 KB
testcase_09 AC 54 ms
67,472 KB
testcase_10 AC 46 ms
61,504 KB
testcase_11 AC 55 ms
67,208 KB
testcase_12 AC 52 ms
65,800 KB
testcase_13 AC 52 ms
66,988 KB
testcase_14 AC 53 ms
66,484 KB
testcase_15 AC 52 ms
65,080 KB
testcase_16 AC 48 ms
61,944 KB
testcase_17 AC 54 ms
66,328 KB
testcase_18 AC 53 ms
66,244 KB
testcase_19 AC 52 ms
66,140 KB
testcase_20 AC 46 ms
62,592 KB
testcase_21 AC 52 ms
66,160 KB
testcase_22 AC 51 ms
66,656 KB
testcase_23 AC 50 ms
66,776 KB
testcase_24 AC 45 ms
62,008 KB
testcase_25 AC 48 ms
62,688 KB
testcase_26 AC 55 ms
66,468 KB
testcase_27 AC 53 ms
67,596 KB
testcase_28 AC 52 ms
67,728 KB
testcase_29 AC 53 ms
67,492 KB
testcase_30 AC 53 ms
66,704 KB
testcase_31 AC 47 ms
62,788 KB
testcase_32 AC 52 ms
65,860 KB
testcase_33 AC 47 ms
61,232 KB
testcase_34 AC 47 ms
62,068 KB
testcase_35 AC 46 ms
62,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

# まずAで減らす
N, A, B, X, Y = getNM()
H = getList()

for i in range(N):
    t = min(H[i] // X, A)
    H[i] -= X * t
    A -= t

H.sort()
for i in range(N - 1, -1, -1):
    if A:
        H[i] -= X
        A -= 1
H = [h if h >= 0 else 0 for h in H]

if B * Y >= sum(H):
    print('Yes')
else:
    print('No')
0