結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 397 ms
21,008 KB
testcase_11 AC 401 ms
21,296 KB
testcase_12 AC 387 ms
21,052 KB
testcase_13 AC 414 ms
21,136 KB
testcase_14 AC 418 ms
21,436 KB
testcase_15 AC 378 ms
20,932 KB
testcase_16 AC 391 ms
21,120 KB
testcase_17 AC 405 ms
21,312 KB
testcase_18 AC 402 ms
21,080 KB
testcase_19 AC 392 ms
20,924 KB
testcase_20 AC 343 ms
21,292 KB
testcase_21 AC 335 ms
21,112 KB
testcase_22 AC 329 ms
20,992 KB
testcase_23 AC 325 ms
20,652 KB
testcase_24 AC 331 ms
21,132 KB
testcase_25 AC 335 ms
20,988 KB
testcase_26 AC 323 ms
20,968 KB
testcase_27 AC 333 ms
20,640 KB
testcase_28 AC 322 ms
20,632 KB
testcase_29 AC 335 ms
21,028 KB
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 102 ms
12,544 KB
testcase_32 AC 102 ms
12,544 KB
testcase_33 AC 87 ms
21,692 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 27 ms
10,624 KB
testcase_36 AC 27 ms
10,624 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, a)
            a -= t
            x -= b * t
            heappush(A, -x)
        else:
            a -= 1

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