結果

問題 No.1015 おつりは要らないです
ユーザー ttrttr
提出日時 2020-05-25 20:47:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,097 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,936 KB
最終ジャッジ日時 2024-11-18 07:21:00
合計ジャッジ時間 9,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 322 ms
21,620 KB
testcase_11 AC 327 ms
21,756 KB
testcase_12 AC 308 ms
21,120 KB
testcase_13 AC 326 ms
21,476 KB
testcase_14 AC 342 ms
21,936 KB
testcase_15 AC 312 ms
21,300 KB
testcase_16 AC 334 ms
21,324 KB
testcase_17 AC 335 ms
21,936 KB
testcase_18 AC 324 ms
21,408 KB
testcase_19 AC 319 ms
21,420 KB
testcase_20 AC 346 ms
21,276 KB
testcase_21 AC 347 ms
21,200 KB
testcase_22 AC 347 ms
21,200 KB
testcase_23 AC 343 ms
20,856 KB
testcase_24 AC 353 ms
21,212 KB
testcase_25 AC 343 ms
21,200 KB
testcase_26 AC 341 ms
21,176 KB
testcase_27 AC 333 ms
20,972 KB
testcase_28 AC 338 ms
21,048 KB
testcase_29 AC 340 ms
21,312 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 133 ms
12,892 KB
testcase_32 AC 132 ms
12,764 KB
testcase_33 AC 118 ms
21,776 KB
testcase_34 AC 32 ms
10,880 KB
testcase_35 AC 31 ms
10,880 KB
testcase_36 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,X,Y,Z = map(int, input().split())
A = [int(a) for a in input().split()]

h = []
for a in A:
    heapq.heappush(h, -a)

while Z > 0 and h:
    a = heapq.heappop(h)
    if a > -10000:
        Z -= 1
    elif Z >= abs(a)//10000:
        Z -= abs(a)//10000
        a = abs(a)%10000
        if a > 0:
            heapq.heappush(h, -a)
        elif a == 0 and X > 0:
            X -= 1
        elif a == 0 and Y > 0:
            Y -= 1
        elif a == 0:
            Z -= 1
    else:
        a += 10000*Z
        heapq.heappush(h, a)
        Z = 0

while Y > 0 and h:
    a = heapq.heappop(h)
    if a > -5000:
        Y -= 1
    elif Y >= abs(a)//5000:
        Y -= abs(a)//5000
        a = abs(a)%5000
        if a > 0:
            heapq.heappush(h, -a)
        elif a == 0 and X > 0:
            X -= 1
        elif a == 0:
            Y -= 1
    else:
        a += 5000*Y
        heapq.heappush(h, a)
        Y = 0

while X > 0 and h:
    a = -heapq.heappop(h)
    X -= (a-1)//1000+1

if len(h) == 0 and X >= 0 and Y >= 0 and Z >= 0:
    ans = "Yes"
else:
    ans = "No"

print(ans)
0