結果

問題 No.1015 おつりは要らないです
ユーザー c-yanc-yan
提出日時 2020-04-03 23:05:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,920 KB
最終ジャッジ日時 2024-07-03 05:39:17
合計ジャッジ時間 8,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 318 ms
21,496 KB
testcase_11 AC 327 ms
21,568 KB
testcase_12 AC 312 ms
21,060 KB
testcase_13 AC 321 ms
21,288 KB
testcase_14 AC 332 ms
21,920 KB
testcase_15 AC 320 ms
21,088 KB
testcase_16 AC 334 ms
21,368 KB
testcase_17 AC 331 ms
21,648 KB
testcase_18 AC 319 ms
21,216 KB
testcase_19 AC 321 ms
21,068 KB
testcase_20 AC 320 ms
21,228 KB
testcase_21 AC 326 ms
21,132 KB
testcase_22 AC 311 ms
21,132 KB
testcase_23 AC 315 ms
20,796 KB
testcase_24 AC 336 ms
21,276 KB
testcase_25 AC 326 ms
21,132 KB
testcase_26 AC 320 ms
21,240 KB
testcase_27 AC 328 ms
20,916 KB
testcase_28 AC 324 ms
21,032 KB
testcase_29 AC 311 ms
21,304 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 117 ms
12,740 KB
testcase_32 AC 121 ms
12,736 KB
testcase_33 AC 95 ms
21,840 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

N, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))

A = [-a for a in A]
heapify(A)

while A:
    if Z == 0:
        break
    x = -heappop(A)
    if x >= 10000:
        t = min(x // 10000, Z)
        Z -= t
        x -= 10000 * t
        heappush(A, -x)
    else:
        Z -= 1

while A:
    if Y == 0:
        break
    x = -heappop(A)
    if x >= 5000:
        t = min(x // 5000, Y)
        Y -= t
        x -= 5000 * t
        heappush(A, -x)
    else:
        Y -= 1

while A:
    if X == 0:
        break
    x = -heappop(A)
    t = min((x + 1000) // 1000, X)
    X -= t

if len(A) == 0:
    print('Yes')
else:
    print('No')
0