結果

問題 No.1015 おつりは要らないです
ユーザー Mao-betaMao-beta
提出日時 2024-03-12 10:42:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 1,878 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-09-29 22:13:53
合計ジャッジ時間 7,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,936 KB
testcase_01 AC 43 ms
55,936 KB
testcase_02 AC 45 ms
55,808 KB
testcase_03 AC 44 ms
55,936 KB
testcase_04 AC 49 ms
55,936 KB
testcase_05 AC 44 ms
56,192 KB
testcase_06 AC 44 ms
56,448 KB
testcase_07 AC 45 ms
55,936 KB
testcase_08 AC 45 ms
56,448 KB
testcase_09 AC 45 ms
55,552 KB
testcase_10 AC 240 ms
92,288 KB
testcase_11 AC 239 ms
92,840 KB
testcase_12 AC 232 ms
92,376 KB
testcase_13 AC 237 ms
92,672 KB
testcase_14 AC 243 ms
92,824 KB
testcase_15 AC 231 ms
93,080 KB
testcase_16 AC 237 ms
92,904 KB
testcase_17 AC 244 ms
92,844 KB
testcase_18 AC 232 ms
92,420 KB
testcase_19 AC 235 ms
93,184 KB
testcase_20 AC 211 ms
92,800 KB
testcase_21 AC 211 ms
92,752 KB
testcase_22 AC 211 ms
92,288 KB
testcase_23 AC 206 ms
92,160 KB
testcase_24 AC 207 ms
92,276 KB
testcase_25 AC 213 ms
92,404 KB
testcase_26 AC 208 ms
92,772 KB
testcase_27 AC 207 ms
92,288 KB
testcase_28 AC 211 ms
92,212 KB
testcase_29 AC 219 ms
92,920 KB
testcase_30 AC 46 ms
55,960 KB
testcase_31 AC 113 ms
90,496 KB
testcase_32 AC 107 ms
90,112 KB
testcase_33 AC 112 ms
92,928 KB
testcase_34 AC 46 ms
56,064 KB
testcase_35 AC 47 ms
55,680 KB
testcase_36 AC 43 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N, *X = NMI()
    A = NLI()
    A = [-a for a in A]
    heapify(A)
    while A:
        a = heappop(A)
        a = -a
        if X[2] > 0:
            if a < 10000:
                X[2] -= 1
                continue

            k, r = divmod(a, 10000)
            if X[2] >= k:
                X[2] -= k
                heappush(A, -r)
                continue
            else:
                heappush(A, -(a-10000*X[2]))
                X[2] = 0
                continue

        if X[1] > 0:
            if a < 5000:
                X[1] -= 1
                continue

            k, r = divmod(a, 5000)
            if X[1] >= k:
                X[1] -= k
                heappush(A, -r)
                continue
            else:
                heappush(A, -(a - 5000 * X[1]))
                X[1] = 0
                continue

        if X[0] > 0:
            if a < 1000:
                X[0] -= 1
                continue

            k, r = divmod(a, 1000)
            if X[0] >= k:
                X[0] -= k
                heappush(A, -r)
                continue
            elif 0 < X[0] < k:
                heappush(A, -(a - 1000 * X[0]))
                X[0] = 0
                continue

        print("No")
        return

    print("Yes")


if __name__ == "__main__":
    main()
0