結果

問題 No.1015 おつりは要らないです
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-27 15:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 90,800 KB
最終ジャッジ日時 2024-11-18 07:23:19
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,296 KB
testcase_01 AC 40 ms
53,288 KB
testcase_02 AC 39 ms
52,632 KB
testcase_03 AC 39 ms
53,140 KB
testcase_04 AC 39 ms
52,892 KB
testcase_05 AC 37 ms
53,184 KB
testcase_06 AC 39 ms
53,820 KB
testcase_07 AC 39 ms
53,296 KB
testcase_08 AC 39 ms
54,180 KB
testcase_09 AC 38 ms
53,144 KB
testcase_10 AC 219 ms
90,420 KB
testcase_11 AC 217 ms
90,496 KB
testcase_12 AC 215 ms
90,536 KB
testcase_13 AC 217 ms
90,404 KB
testcase_14 AC 223 ms
90,368 KB
testcase_15 AC 214 ms
90,280 KB
testcase_16 AC 219 ms
90,244 KB
testcase_17 AC 221 ms
90,452 KB
testcase_18 AC 222 ms
90,212 KB
testcase_19 AC 213 ms
90,136 KB
testcase_20 AC 228 ms
90,232 KB
testcase_21 AC 226 ms
90,008 KB
testcase_22 AC 228 ms
89,840 KB
testcase_23 AC 226 ms
90,088 KB
testcase_24 AC 233 ms
90,188 KB
testcase_25 AC 232 ms
90,016 KB
testcase_26 AC 237 ms
90,236 KB
testcase_27 AC 237 ms
89,996 KB
testcase_28 AC 225 ms
89,976 KB
testcase_29 AC 229 ms
90,048 KB
testcase_30 AC 39 ms
53,252 KB
testcase_31 AC 108 ms
88,140 KB
testcase_32 AC 78 ms
88,396 KB
testcase_33 AC 85 ms
90,800 KB
testcase_34 AC 38 ms
53,616 KB
testcase_35 AC 39 ms
53,972 KB
testcase_36 AC 40 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heapify, heappush
n, x, y, z = map(int, input().split())
A = list(int(-a) for a in map(int, input().split()))
heapify(A)

if n > x + y + z or -sum(A) >= x * 1000 + y * 5000 + z * 10000:
    print("No")
    exit()

while A:
    if not z:
        break
    a = -heappop(A)
    if a >= 10000:
        t = min(a // 10000, z)
        z -= t
        a -= 10000 * t
        heappush(A, -a)
    else:
        z -= 1

while A:
    if not y:
        break
    a = -heappop(A)
    if a >= 5000:
        t = min(a // 5000, y)
        y -= t
        a -= 5000 * t
        heappush(A, -a)
    else:
        y -= 1

while A:
    if not x:
        break
    a = -heappop(A)
    t = min((a + 1000) // 1000, x)
    x -= t
    a -= t * 1000
    if a >= 0:
        heappush(A, -a)

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