結果

問題 No.1736 Princess vs. Dragoness
ユーザー a aa a
提出日時 2022-10-07 15:35:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,948 KB
最終ジャッジ日時 2024-06-11 22:32:43
合計ジャッジ時間 21,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
16,256 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 69 ms
10,752 KB
testcase_04 AC 93 ms
10,880 KB
testcase_05 AC 98 ms
10,880 KB
testcase_06 AC 1,614 ms
11,008 KB
testcase_07 AC 1,588 ms
11,136 KB
testcase_08 AC 1,355 ms
11,008 KB
testcase_09 AC 1,829 ms
11,136 KB
testcase_10 AC 41 ms
11,008 KB
testcase_11 AC 522 ms
11,136 KB
testcase_12 AC 419 ms
11,008 KB
testcase_13 WA -
testcase_14 AC 1,498 ms
11,264 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 919 ms
11,264 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 358 ms
10,752 KB
testcase_21 AC 43 ms
11,008 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n,a,b,x,y=list(map(int,input().split()))
h=list(map(int,input().split ()))
h.sort()
for i in range (b):
    p=y
    for j in range(n):
        d=min(p,h[j])
        h[j]-=d
        p-=d
        if p==0:
            break
for k in range(n):
    if h[k]>0:
       a-=math.ceil(h[k]/x)
    if k==n-1 and a>=0:
           print("Yes")
    if a<0:
        print("No")
        break
        
0