結果

問題 No.1015 おつりは要らないです
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-27 15:30:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-11-18 07:23:05
合計ジャッジ時間 8,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 341 ms
21,260 KB
testcase_11 AC 346 ms
21,456 KB
testcase_12 AC 326 ms
20,952 KB
testcase_13 AC 333 ms
21,300 KB
testcase_14 AC 352 ms
21,736 KB
testcase_15 AC 321 ms
20,976 KB
testcase_16 AC 334 ms
21,284 KB
testcase_17 AC 350 ms
21,664 KB
testcase_18 AC 347 ms
21,116 KB
testcase_19 AC 332 ms
21,080 KB
testcase_20 AC 325 ms
21,240 KB
testcase_21 AC 329 ms
21,028 KB
testcase_22 AC 326 ms
21,156 KB
testcase_23 AC 315 ms
20,812 KB
testcase_24 AC 329 ms
21,292 KB
testcase_25 AC 321 ms
21,120 KB
testcase_26 AC 317 ms
21,132 KB
testcase_27 AC 314 ms
20,804 KB
testcase_28 AC 313 ms
21,040 KB
testcase_29 AC 314 ms
21,316 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 131 ms
12,632 KB
testcase_32 AC 60 ms
12,632 KB
testcase_33 AC 83 ms
21,604 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 26 ms
10,880 KB
testcase_36 AC 28 ms
10,880 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)

if n > x + y + z or -sum(A) >= x * 1000 + y * 5000 + z * 10000:
    print("No")
    exit()

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

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

while A:
    if x == 0:
        break
    a = -heappop(A)
    t = min((a + 1000) // 1000, x)
    x -= t
    a -= t * 1000
    if a >= 0:
        heappush(A, -a)

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