結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 65 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 91 ms
10,880 KB
testcase_06 AC 1,547 ms
11,008 KB
testcase_07 WA -
testcase_08 AC 1,323 ms
11,136 KB
testcase_09 AC 1,938 ms
11,136 KB
testcase_10 AC 40 ms
11,008 KB
testcase_11 AC 501 ms
11,136 KB
testcase_12 AC 404 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 924 ms
11,136 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 42 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)
    elif k==n-1 and a>=0:
           print("Yes")
    if a<0:
        print("No")
        break
        
0