結果

問題 No.1015 おつりは要らないです
ユーザー rlangevinrlangevin
提出日時 2023-05-09 12:27:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-11-25 23:44:31
合計ジャッジ時間 8,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 252 ms
96,128 KB
testcase_11 AC 258 ms
96,128 KB
testcase_12 AC 254 ms
96,384 KB
testcase_13 AC 250 ms
96,256 KB
testcase_14 AC 265 ms
96,512 KB
testcase_15 AC 250 ms
96,000 KB
testcase_16 AC 252 ms
96,384 KB
testcase_17 AC 268 ms
96,384 KB
testcase_18 AC 264 ms
96,000 KB
testcase_19 AC 260 ms
96,512 KB
testcase_20 AC 242 ms
95,872 KB
testcase_21 AC 240 ms
96,256 KB
testcase_22 AC 249 ms
96,128 KB
testcase_23 AC 237 ms
95,744 KB
testcase_24 AC 242 ms
96,000 KB
testcase_25 AC 242 ms
95,744 KB
testcase_26 AC 244 ms
96,256 KB
testcase_27 AC 245 ms
96,000 KB
testcase_28 AC 237 ms
96,000 KB
testcase_29 AC 238 ms
96,512 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 116 ms
94,208 KB
testcase_32 AC 117 ms
94,208 KB
testcase_33 AC 120 ms
96,768 KB
testcase_34 AC 38 ms
52,224 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))
A = list(map(lambda x : -x, A))
heapify(A)
while Z and A:
    v = -heappop(A)
    if v >= 10000:
        n = min(Z, v // 10000)
        Z -= n
        v -= 10000 * n
        heappush(A, -v)
    else:
        Z -= 1

while Y and A:
    v = -heappop(A)
    if v >= 5000:
        n = min(Y, v // 5000)
        Y -= n
        v -= 5000 * n
        heappush(A, -v)
    else:
        Y -= 1

while X and A:
    v = -heappop(A)
    if v >= 1000:
        n = min(X, v // 1000)
        X -= n
        v -= 1000 * n
        heappush(A, -v)
    else:
        X -= 1

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