結果

問題 No.1015 おつりは要らないです
ユーザー kurimupykurimupy
提出日時 2020-06-12 23:41:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,513 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-06-24 06:05:23
合計ジャッジ時間 8,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,992 KB
testcase_01 AC 44 ms
52,736 KB
testcase_02 AC 45 ms
52,864 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 46 ms
53,120 KB
testcase_09 AC 44 ms
52,608 KB
testcase_10 AC 246 ms
96,512 KB
testcase_11 AC 250 ms
96,768 KB
testcase_12 AC 243 ms
96,128 KB
testcase_13 AC 244 ms
96,384 KB
testcase_14 AC 253 ms
97,408 KB
testcase_15 AC 247 ms
96,256 KB
testcase_16 AC 244 ms
96,916 KB
testcase_17 AC 256 ms
96,864 KB
testcase_18 AC 250 ms
96,256 KB
testcase_19 AC 248 ms
96,256 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 43 ms
52,352 KB
testcase_31 AC 126 ms
94,592 KB
testcase_32 AC 126 ms
94,080 KB
testcase_33 AC 136 ms
96,896 KB
testcase_34 AC 44 ms
53,120 KB
testcase_35 AC 46 ms
52,864 KB
testcase_36 AC 49 ms
52,736 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:
        flag = False
        heapq.heappush(B, -x)
        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:
        flag = False
        heapq.heappush(B, -x)
        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