結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 476 ms
21,260 KB
testcase_11 AC 478 ms
21,672 KB
testcase_12 AC 458 ms
21,048 KB
testcase_13 AC 482 ms
21,264 KB
testcase_14 AC 481 ms
21,688 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 324 ms
21,216 KB
testcase_21 AC 316 ms
21,240 KB
testcase_22 AC 313 ms
21,120 KB
testcase_23 AC 309 ms
20,908 KB
testcase_24 AC 323 ms
21,388 KB
testcase_25 AC 315 ms
21,120 KB
testcase_26 AC 323 ms
21,100 KB
testcase_27 AC 323 ms
20,900 KB
testcase_28 AC 312 ms
20,888 KB
testcase_29 AC 320 ms
21,156 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 106 ms
12,800 KB
testcase_32 AC 109 ms
12,672 KB
testcase_33 AC 95 ms
21,692 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 28 ms
10,880 KB
testcase_36 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

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

amounts = [Z, Y, X]
bills = [10000, 5000, 1000]

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

for i in range(3):
    a = amounts[i]
    b = bills[i]

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

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