結果

問題 No.1736 Princess vs. Dragoness
ユーザー tamatotamato
提出日時 2021-11-12 21:45:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-05-04 08:01:06
合計ジャッジ時間 2,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,940 KB
testcase_01 AC 36 ms
52,388 KB
testcase_02 AC 34 ms
53,680 KB
testcase_03 AC 47 ms
63,256 KB
testcase_04 AC 50 ms
63,724 KB
testcase_05 AC 39 ms
59,392 KB
testcase_06 AC 46 ms
63,104 KB
testcase_07 AC 55 ms
64,256 KB
testcase_08 AC 52 ms
62,848 KB
testcase_09 AC 63 ms
64,384 KB
testcase_10 AC 35 ms
52,352 KB
testcase_11 AC 62 ms
64,896 KB
testcase_12 AC 53 ms
63,232 KB
testcase_13 AC 48 ms
63,232 KB
testcase_14 AC 57 ms
65,536 KB
testcase_15 AC 48 ms
62,592 KB
testcase_16 AC 46 ms
61,096 KB
testcase_17 AC 56 ms
64,640 KB
testcase_18 AC 46 ms
62,592 KB
testcase_19 AC 45 ms
62,848 KB
testcase_20 AC 45 ms
61,312 KB
testcase_21 AC 51 ms
63,872 KB
testcase_22 AC 51 ms
64,000 KB
testcase_23 AC 44 ms
62,080 KB
testcase_24 AC 44 ms
59,520 KB
testcase_25 AC 44 ms
60,544 KB
testcase_26 AC 47 ms
62,720 KB
testcase_27 AC 50 ms
61,824 KB
testcase_28 AC 49 ms
62,208 KB
testcase_29 AC 47 ms
61,952 KB
testcase_30 AC 47 ms
62,208 KB
testcase_31 AC 49 ms
62,080 KB
testcase_32 AC 46 ms
61,952 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 38 ms
52,224 KB
testcase_35 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    ok = sum(H)
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        HH = [max(0, h - mid) for h in H]
        AA = A
        cnt = 0
        for h in HH:
            cnt += h // X
        if cnt >= AA:
            S = sum(HH) - AA * X
        else:
            HHH = [h % X for h in HH]
            AA -= cnt
            if AA >= N:
                S = 0
            else:
                HHH.sort(reverse=True)
                for i in range(AA):
                    HHH[i] = 0
                S = sum(HHH)
        if S <= B * Y:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2

    if ok:
        print("No")
    else:
        print("Yes")


if __name__ == '__main__':
    main()
0