結果

問題 No.1015 おつりは要らないです
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-27 15:10:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,792 KB
最終ジャッジ日時 2024-07-05 09:11:35
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 436 ms
21,240 KB
testcase_11 AC 465 ms
21,440 KB
testcase_12 AC 422 ms
20,928 KB
testcase_13 AC 435 ms
21,152 KB
testcase_14 AC 482 ms
21,792 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 330 ms
21,100 KB
testcase_21 AC 324 ms
21,004 KB
testcase_22 AC 319 ms
21,004 KB
testcase_23 AC 310 ms
20,664 KB
testcase_24 AC 335 ms
21,272 KB
testcase_25 AC 324 ms
21,012 KB
testcase_26 AC 329 ms
21,112 KB
testcase_27 AC 321 ms
20,912 KB
testcase_28 AC 321 ms
20,900 KB
testcase_29 AC 329 ms
21,300 KB
testcase_30 AC 28 ms
10,624 KB
testcase_31 AC 120 ms
12,616 KB
testcase_32 WA -
testcase_33 AC 110 ms
21,588 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 29 ms
10,624 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)

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

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

while A:
    if not x:
        break
    a = -heappop(A)
    if a >= 1000:
        use = min(a//1000, x)
        x -= use
        a -= use * 1000
        heappush(A, -a)
    else:
        x = -1

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