結果

問題 No.1015 おつりは要らないです
ユーザー OKCH3COOHOKCH3COOH
提出日時 2020-04-11 08:23:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-11-18 07:18:19
合計ジャッジ時間 10,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 283 ms
21,432 KB
testcase_11 AC 299 ms
21,440 KB
testcase_12 AC 282 ms
20,924 KB
testcase_13 AC 294 ms
21,288 KB
testcase_14 AC 299 ms
21,824 KB
testcase_15 AC 284 ms
21,116 KB
testcase_16 AC 299 ms
21,424 KB
testcase_17 AC 291 ms
21,756 KB
testcase_18 AC 282 ms
21,100 KB
testcase_19 AC 286 ms
21,488 KB
testcase_20 AC 412 ms
21,228 KB
testcase_21 AC 406 ms
21,136 KB
testcase_22 AC 406 ms
21,136 KB
testcase_23 AC 393 ms
20,800 KB
testcase_24 AC 437 ms
21,280 KB
testcase_25 AC 406 ms
21,012 KB
testcase_26 AC 416 ms
21,120 KB
testcase_27 AC 406 ms
21,024 KB
testcase_28 AC 410 ms
20,864 KB
testcase_29 AC 406 ms
21,256 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 167 ms
12,672 KB
testcase_32 AC 164 ms
12,672 KB
testcase_33 AC 162 ms
21,724 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify

N, sen, gosen, man = map(int, input().split())
A = list(map(lambda a: -int(a), input().split()))

heapify(A)
while A and man > 0:
    a = -heappop(A)
    c = max(1, min(man, a // 10000))
    a -= c * 10000
    man -= c
    if a >= 0:
        heappush(A, -a)

while A and gosen > 0:
    a = -heappop(A)
    c = max(1, min(gosen, a // 5000))
    a -= c * 5000
    gosen -= c
    if a >= 0:
        heappush(A, -a)

A = [-a for a in A]

cnt = 0
for a in A:
    c = -(-a // 1000)
    if c * 1000 == a:
        c += 1
    cnt += c

print('Yes' if cnt <= sen else 'No')
0