結果

問題 No.1736 Princess vs. Dragoness
ユーザー ShirotsumeShirotsume
提出日時 2021-10-13 00:18:32
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 426 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 76,144 KB
最終ジャッジ日時 2024-05-04 04:05:49
合計ジャッジ時間 3,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,300 KB
testcase_01 AC 39 ms
52,412 KB
testcase_02 AC 38 ms
52,884 KB
testcase_03 WA -
testcase_04 AC 52 ms
61,568 KB
testcase_05 AC 48 ms
62,016 KB
testcase_06 AC 98 ms
75,360 KB
testcase_07 AC 83 ms
64,052 KB
testcase_08 AC 62 ms
62,960 KB
testcase_09 AC 70 ms
63,448 KB
testcase_10 AC 48 ms
61,052 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 96 ms
75,892 KB
testcase_14 WA -
testcase_15 AC 63 ms
75,432 KB
testcase_16 AC 69 ms
75,700 KB
testcase_17 WA -
testcase_18 AC 100 ms
75,452 KB
testcase_19 AC 107 ms
75,708 KB
testcase_20 AC 61 ms
75,392 KB
testcase_21 WA -
testcase_22 AC 76 ms
64,420 KB
testcase_23 AC 63 ms
75,580 KB
testcase_24 AC 51 ms
69,908 KB
testcase_25 AC 51 ms
61,704 KB
testcase_26 AC 73 ms
75,688 KB
testcase_27 AC 56 ms
67,672 KB
testcase_28 AC 63 ms
75,324 KB
testcase_29 AC 60 ms
75,652 KB
testcase_30 AC 84 ms
75,656 KB
testcase_31 AC 56 ms
64,396 KB
testcase_32 AC 68 ms
75,480 KB
testcase_33 AC 39 ms
52,696 KB
testcase_34 WA -
testcase_35 AC 39 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solveac(n, a, b, x, y, h):
    for i in range(a):
        target = h.index(max(h))
        h[target] -= x
    for i in range(b):
        p = y
        for j in range(n):
            d = min(h[j], p)
            p -= d
            h[j] -= d
    if max(h) <= 0:
        return 'Yes'
    else:
        return 'No'

n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
print(solveac(n, a, b, x, y, h))

0