結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 57 ms
10,880 KB
testcase_04 AC 78 ms
11,008 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,421 ms
11,136 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 451 ms
11,392 KB
testcase_12 AC 391 ms
11,008 KB
testcase_13 WA -
testcase_14 AC 1,472 ms
11,136 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 825 ms
11,136 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 345 ms
10,880 KB
testcase_21 AC 42 ms
11,136 KB
testcase_22 TLE -
testcase_23 AC 820 ms
11,136 KB
testcase_24 WA -
testcase_25 AC 40 ms
10,880 KB
testcase_26 AC 709 ms
11,136 KB
testcase_27 AC 94 ms
11,264 KB
testcase_28 AC 304 ms
11,136 KB
testcase_29 AC 367 ms
11,264 KB
testcase_30 AC 1,168 ms
11,136 KB
testcase_31 AC 97 ms
11,008 KB
testcase_32 AC 287 ms
11,008 KB
testcase_33 AC 27 ms
10,880 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

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 a<0:
           print("No")
           break
       elif k==n-1 and a>=0:
           print("Yes")
0