結果

問題 No.1015 おつりは要らないです
ユーザー yosakayosaka
提出日時 2020-04-03 23:24:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 97,008 KB
最終ジャッジ日時 2024-11-17 23:16:42
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,988 KB
testcase_01 AC 33 ms
53,008 KB
testcase_02 AC 31 ms
53,008 KB
testcase_03 AC 32 ms
52,904 KB
testcase_04 AC 31 ms
52,996 KB
testcase_05 AC 32 ms
52,884 KB
testcase_06 AC 31 ms
52,336 KB
testcase_07 AC 31 ms
52,792 KB
testcase_08 AC 33 ms
53,876 KB
testcase_09 AC 32 ms
53,292 KB
testcase_10 AC 215 ms
90,432 KB
testcase_11 AC 216 ms
90,672 KB
testcase_12 AC 209 ms
90,408 KB
testcase_13 AC 219 ms
90,428 KB
testcase_14 AC 215 ms
90,840 KB
testcase_15 AC 213 ms
90,408 KB
testcase_16 AC 221 ms
90,444 KB
testcase_17 AC 217 ms
90,420 KB
testcase_18 AC 216 ms
90,488 KB
testcase_19 AC 216 ms
90,440 KB
testcase_20 AC 211 ms
90,320 KB
testcase_21 AC 206 ms
90,052 KB
testcase_22 AC 206 ms
90,284 KB
testcase_23 AC 205 ms
90,036 KB
testcase_24 AC 207 ms
90,132 KB
testcase_25 AC 214 ms
90,256 KB
testcase_26 AC 207 ms
90,512 KB
testcase_27 AC 211 ms
90,176 KB
testcase_28 AC 205 ms
90,184 KB
testcase_29 AC 210 ms
90,280 KB
testcase_30 AC 34 ms
53,360 KB
testcase_31 AC 122 ms
95,024 KB
testcase_32 AC 118 ms
94,788 KB
testcase_33 AC 92 ms
97,008 KB
testcase_34 AC 33 ms
52,952 KB
testcase_35 AC 33 ms
52,452 KB
testcase_36 AC 33 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
from heapq import heappop, heappush,heapify

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

H=[]

for i in range(N):
    heappush(H,-A[i])

flg=True

while H[0]<=0:
    M=heappop(H)
    if Z>0:
        num=max(1,min(Z,(-M)//10000))
        M+=10000*num
        Z-=num
        heappush(H,M)
    elif Y>0:
        num=max(1,min(Y,(-M)//5000))
        M+=5000*num
        Y-=num
        heappush(H,M)
    elif X>0:
        num=max(1,min(X,(-M)//1000))
        M+=1000*num
        X-=num
        heappush(H,M)
    elif M<=0:
        flg=False
        break
if flg:
    print("Yes")
else:
    print("No")
0