結果

問題 No.1015 おつりは要らないです
ユーザー lloyzlloyz
提出日時 2022-06-30 21:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 91,228 KB
最終ジャッジ日時 2024-11-24 21:56:32
合計ジャッジ時間 12,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,876 KB
testcase_01 AC 40 ms
53,212 KB
testcase_02 AC 39 ms
53,968 KB
testcase_03 AC 39 ms
53,100 KB
testcase_04 AC 40 ms
53,200 KB
testcase_05 AC 40 ms
52,520 KB
testcase_06 AC 40 ms
52,884 KB
testcase_07 AC 41 ms
52,760 KB
testcase_08 AC 40 ms
53,420 KB
testcase_09 AC 39 ms
53,364 KB
testcase_10 AC 420 ms
90,960 KB
testcase_11 AC 447 ms
90,656 KB
testcase_12 AC 425 ms
90,428 KB
testcase_13 AC 402 ms
90,432 KB
testcase_14 AC 453 ms
90,500 KB
testcase_15 AC 444 ms
90,424 KB
testcase_16 AC 432 ms
90,692 KB
testcase_17 AC 447 ms
90,700 KB
testcase_18 AC 426 ms
90,496 KB
testcase_19 AC 421 ms
90,352 KB
testcase_20 AC 462 ms
90,352 KB
testcase_21 AC 421 ms
90,128 KB
testcase_22 AC 419 ms
90,408 KB
testcase_23 AC 398 ms
90,188 KB
testcase_24 AC 423 ms
90,560 KB
testcase_25 AC 432 ms
90,232 KB
testcase_26 AC 442 ms
90,584 KB
testcase_27 AC 440 ms
90,592 KB
testcase_28 AC 405 ms
90,536 KB
testcase_29 AC 449 ms
90,380 KB
testcase_30 AC 39 ms
53,348 KB
testcase_31 AC 302 ms
88,584 KB
testcase_32 AC 306 ms
88,704 KB
testcase_33 AC 354 ms
91,228 KB
testcase_34 AC 38 ms
53,036 KB
testcase_35 AC 39 ms
53,352 KB
testcase_36 AC 39 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n, x, y, z = map(int, input().split())
A = list(map(int, input().split()))
for i in range(n):
    A[i] += 1
    A[i] *= -1

heapify(A)
Y = [10000, 5000, 1000]
C = [z, y, x]
for i in range(3):
    yen = Y[i]
    cnt = C[i]
    for j in range(n):
        a = -heappop(A)
        use = min(a // yen, cnt)
        cnt -= use
        heappush(A, -a + use * yen)
    for j in range(n):
        a = -heappop(A)
        if cnt > 0:
            cnt -= 1
            a = 0
        heappush(A, -a)
for i in range(n):
    if A[i] < 0:
        print("No")
        exit()
print("Yes")
0