結果

問題 No.1015 おつりは要らないです
ユーザー kurimupykurimupy
提出日時 2020-06-12 23:53:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,700 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 97,388 KB
最終ジャッジ日時 2024-11-18 07:22:48
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,544 KB
testcase_01 AC 31 ms
52,948 KB
testcase_02 AC 31 ms
53,100 KB
testcase_03 AC 31 ms
52,940 KB
testcase_04 AC 31 ms
53,328 KB
testcase_05 AC 31 ms
53,396 KB
testcase_06 AC 30 ms
53,348 KB
testcase_07 AC 32 ms
53,468 KB
testcase_08 AC 31 ms
53,336 KB
testcase_09 AC 34 ms
53,372 KB
testcase_10 AC 182 ms
96,448 KB
testcase_11 AC 187 ms
96,960 KB
testcase_12 AC 180 ms
96,568 KB
testcase_13 AC 181 ms
96,500 KB
testcase_14 AC 188 ms
96,960 KB
testcase_15 AC 182 ms
96,780 KB
testcase_16 AC 184 ms
96,716 KB
testcase_17 AC 190 ms
97,056 KB
testcase_18 AC 187 ms
96,596 KB
testcase_19 AC 184 ms
96,812 KB
testcase_20 AC 191 ms
96,324 KB
testcase_21 AC 189 ms
96,736 KB
testcase_22 AC 190 ms
96,656 KB
testcase_23 AC 191 ms
96,132 KB
testcase_24 AC 194 ms
96,500 KB
testcase_25 AC 191 ms
96,380 KB
testcase_26 AC 190 ms
96,276 KB
testcase_27 AC 190 ms
96,364 KB
testcase_28 AC 191 ms
96,316 KB
testcase_29 AC 190 ms
96,488 KB
testcase_30 AC 32 ms
53,296 KB
testcase_31 AC 93 ms
94,576 KB
testcase_32 AC 96 ms
94,784 KB
testcase_33 AC 103 ms
97,388 KB
testcase_34 AC 33 ms
53,360 KB
testcase_35 AC 33 ms
54,072 KB
testcase_36 AC 32 ms
52,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# problem 3
import math
import heapq
N, X, Y, Z = map(int, input().split())

A = list(map(int, input().split()))

B = []
for num in A:
    B.append(-num-1)
heapq.heapify(B)

flag = True
# 10000円処理のケース

while flag and B:
    x = heapq.heappop(B)*(-1)
    if x < 10000:
        if Z == 0:
            heapq.heappush(B, -x)
            flag = False
            continue
        elif Z > 0:
            Z -= 1
            continue

    elif x >= 10000:
        u, v = divmod(x, 10000)
        if u < Z:
            Z -= u
            heapq.heappush(B, -v)
            continue
        elif u >= Z:
            x -= Z*10000
            Z = 0
            heapq.heappush(B, -x)
            flag = False
if not B:
    print("Yes")
    exit()


flag = True
# 5000円のケース
while flag and B:
    x = heapq.heappop(B)*(-1)
    if x < 5000:
        if Y == 0:
            heapq.heappush(B, -x)
            flag = False
            continue
        elif Y > 0:
            Y -= 1
            continue
    elif x >= 5000:
        u, v = divmod(x, 5000)
        if u < Y:
            Y -= u
            heapq.heappush(B, -v)
            continue
        elif u >= Y:
            x -= Y*5000
            Y = 0
            heapq.heappush(B, -x)
            flag = False
if not B:
    print("Yes")
    exit()

# 1000円の場合
flag = True
judge = True
Left = Y+Z
while B and flag:
    x = heapq.heappop(B)*(-1)
    if Left > 0:
        Left -= 1
        continue
    else:
        u = math.ceil(x/1000)
        if X >= u:
            X -= u
            continue
        else:
            flag = False
            judge = False
            continue
if judge:
    print("Yes")
else:
    print("No")
0