結果

問題 No.1736 Princess vs. Dragoness
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 22:00:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-04 08:40:06
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 WA -
testcase_04 AC 46 ms
60,032 KB
testcase_05 AC 40 ms
51,872 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 47 ms
60,288 KB
testcase_08 AC 51 ms
60,288 KB
testcase_09 AC 47 ms
60,288 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 46 ms
60,416 KB
testcase_14 WA -
testcase_15 AC 45 ms
60,116 KB
testcase_16 AC 40 ms
52,136 KB
testcase_17 WA -
testcase_18 AC 47 ms
60,160 KB
testcase_19 AC 50 ms
60,544 KB
testcase_20 AC 44 ms
52,224 KB
testcase_21 WA -
testcase_22 AC 47 ms
60,672 KB
testcase_23 AC 60 ms
68,224 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 40 ms
52,864 KB
testcase_26 AC 82 ms
76,084 KB
testcase_27 AC 85 ms
76,160 KB
testcase_28 AC 67 ms
69,120 KB
testcase_29 AC 54 ms
62,208 KB
testcase_30 AC 80 ms
76,544 KB
testcase_31 AC 41 ms
52,864 KB
testcase_32 AC 103 ms
76,288 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, a, b, x, y = map(int, input().split())
H = list(map(int, input().split()))
for i in range(a+1):
    cnt1 = 0
    H1 = [0]*n
    for j in range(n):
        H1[j] = H[j]
    for j in range(n):
        h = H[j]
        if cnt1+(h+x-1)//x <= i:
            H1[j] = 0
            cnt1 += (h+x-1)//x
        else:
            H1[j] = h-(a-cnt1)*x
            break
    cnt2 = 0
    for j in range(n):
        h = H1[j]
        if cnt2+h <= b*y:
            H1[j] = 0
            cnt2 += h
        else:
            H1[j] = h-(b*y-cnt2)
            break
    cnt3 = 0
    for h in H1:
        cnt3 += (h+x-1)//x
    if cnt3 <= a-i:
        print('Yes')
        exit()
print('No')
0