結果

問題 No.1015 おつりは要らないです
ユーザー komkompikomkompi
提出日時 2023-11-04 10:12:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-09-25 21:54:34
合計ジャッジ時間 7,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 249 ms
90,496 KB
testcase_11 AC 251 ms
90,496 KB
testcase_12 AC 249 ms
89,856 KB
testcase_13 AC 263 ms
90,368 KB
testcase_14 AC 264 ms
90,496 KB
testcase_15 AC 250 ms
90,368 KB
testcase_16 AC 252 ms
90,368 KB
testcase_17 AC 265 ms
90,240 KB
testcase_18 AC 256 ms
90,368 KB
testcase_19 AC 250 ms
90,880 KB
testcase_20 AC 260 ms
89,984 KB
testcase_21 AC 246 ms
89,984 KB
testcase_22 AC 245 ms
90,624 KB
testcase_23 AC 242 ms
90,240 KB
testcase_24 AC 244 ms
90,112 KB
testcase_25 AC 251 ms
90,112 KB
testcase_26 AC 244 ms
90,112 KB
testcase_27 AC 248 ms
89,856 KB
testcase_28 AC 243 ms
90,368 KB
testcase_29 AC 241 ms
90,368 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 110 ms
88,448 KB
testcase_32 AC 109 ms
88,448 KB
testcase_33 AC 117 ms
90,624 KB
testcase_34 AC 40 ms
52,864 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import heapq as hq

N,X,Y,Z=map(int,input().split())
A=list(map(lambda x:-int(x),input().split()))

hq.heapify(A)

for money,n in zip([10000,5000,1000],[Z,Y,X]):
    while n>0 and A:
        shop=hq.heappop(A)
        use=min(-shop//money,n)
        if use==0:
            hq.heappush(A,shop)
            break
        else:
            shop+=use*money
            n-=use
            hq.heappush(A,shop)
        
    while A:
        if n==0:
            break
        else:
            garbage=hq.heappop(A)
            n-=1

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

0