結果

問題 No.1015 おつりは要らないです
ユーザー c-yanc-yan
提出日時 2020-07-30 03:45:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-11-18 07:24:54
合計ジャッジ時間 8,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 375 ms
21,260 KB
testcase_11 AC 378 ms
21,548 KB
testcase_12 AC 353 ms
21,048 KB
testcase_13 AC 362 ms
21,276 KB
testcase_14 AC 390 ms
21,564 KB
testcase_15 AC 357 ms
21,060 KB
testcase_16 AC 365 ms
21,120 KB
testcase_17 AC 375 ms
21,568 KB
testcase_18 AC 382 ms
21,212 KB
testcase_19 AC 365 ms
21,048 KB
testcase_20 AC 302 ms
21,212 KB
testcase_21 AC 320 ms
21,112 KB
testcase_22 AC 304 ms
20,988 KB
testcase_23 AC 290 ms
20,780 KB
testcase_24 AC 308 ms
21,128 KB
testcase_25 AC 308 ms
21,116 KB
testcase_26 AC 300 ms
21,224 KB
testcase_27 AC 300 ms
20,772 KB
testcase_28 AC 297 ms
20,888 KB
testcase_29 AC 303 ms
21,152 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 93 ms
12,544 KB
testcase_32 AC 95 ms
12,672 KB
testcase_33 AC 81 ms
21,824 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 24 ms
10,752 KB
testcase_36 AC 25 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()))

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

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

for i in range(3):
    n = numbers[i]
    b = bills[i]

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

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