結果

問題 No.1736 Princess vs. Dragoness
ユーザー moharan627moharan627
提出日時 2021-11-12 21:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-04 08:22:53
合計ジャッジ時間 3,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 56 ms
66,176 KB
testcase_04 AC 62 ms
66,688 KB
testcase_05 AC 59 ms
62,976 KB
testcase_06 AC 110 ms
76,032 KB
testcase_07 AC 97 ms
67,200 KB
testcase_08 AC 72 ms
66,048 KB
testcase_09 AC 82 ms
65,920 KB
testcase_10 AC 52 ms
62,080 KB
testcase_11 AC 125 ms
75,776 KB
testcase_12 AC 83 ms
76,416 KB
testcase_13 AC 93 ms
76,288 KB
testcase_14 AC 93 ms
76,672 KB
testcase_15 AC 69 ms
76,032 KB
testcase_16 AC 75 ms
75,648 KB
testcase_17 AC 89 ms
76,160 KB
testcase_18 AC 96 ms
76,160 KB
testcase_19 AC 100 ms
76,032 KB
testcase_20 AC 68 ms
75,392 KB
testcase_21 AC 68 ms
67,968 KB
testcase_22 AC 129 ms
75,648 KB
testcase_23 AC 71 ms
75,904 KB
testcase_24 AC 56 ms
67,968 KB
testcase_25 AC 60 ms
63,360 KB
testcase_26 AC 76 ms
75,904 KB
testcase_27 AC 63 ms
68,352 KB
testcase_28 AC 72 ms
75,776 KB
testcase_29 AC 70 ms
75,904 KB
testcase_30 AC 90 ms
76,544 KB
testcase_31 AC 65 ms
69,632 KB
testcase_32 AC 81 ms
75,776 KB
testcase_33 AC 43 ms
53,120 KB
testcase_34 AC 41 ms
53,632 KB
testcase_35 AC 41 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N,A,B,X,Y = MI()
    H =LI()
    for a in range(A):
        MAX=0
        idx = -1
        for n in range(N):
            if H[n]<=0:
                continue
            if MAX < H[n]:
                MAX = H[n]
                idx = n
        H[idx]-=X
        #print(H)
    for b in range(B):
        P = Y
        for i in range(N):
            if H[i]<=0:
                continue
            D = min(P,H[i])
            H[i]-=D
            P-=D
        #print(H)
    flag = True
    for n in range(N):
        if H[n]>0:
            flag = False
    if flag:
        print("Yes")
    else:
        print("No")
    return
solve()
0