結果

問題 No.1015 おつりは要らないです
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-03 00:22:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 96,864 KB
最終ジャッジ日時 2024-10-03 00:22:17
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,468 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,932 KB
testcase_03 AC 39 ms
52,208 KB
testcase_04 AC 41 ms
53,780 KB
testcase_05 AC 42 ms
52,824 KB
testcase_06 AC 39 ms
53,404 KB
testcase_07 AC 40 ms
52,880 KB
testcase_08 AC 39 ms
52,884 KB
testcase_09 AC 41 ms
52,560 KB
testcase_10 AC 226 ms
90,092 KB
testcase_11 AC 229 ms
90,308 KB
testcase_12 AC 222 ms
90,224 KB
testcase_13 AC 237 ms
90,344 KB
testcase_14 AC 228 ms
90,580 KB
testcase_15 AC 224 ms
90,428 KB
testcase_16 AC 224 ms
90,332 KB
testcase_17 AC 228 ms
90,236 KB
testcase_18 AC 241 ms
90,392 KB
testcase_19 AC 226 ms
90,444 KB
testcase_20 AC 209 ms
90,012 KB
testcase_21 AC 202 ms
89,976 KB
testcase_22 AC 200 ms
89,924 KB
testcase_23 AC 229 ms
90,052 KB
testcase_24 AC 205 ms
90,780 KB
testcase_25 AC 205 ms
90,356 KB
testcase_26 AC 205 ms
90,108 KB
testcase_27 AC 202 ms
89,916 KB
testcase_28 AC 203 ms
90,076 KB
testcase_29 AC 214 ms
90,412 KB
testcase_30 AC 40 ms
52,556 KB
testcase_31 AC 95 ms
94,392 KB
testcase_32 AC 96 ms
94,948 KB
testcase_33 AC 97 ms
96,864 KB
testcase_34 AC 40 ms
53,904 KB
testcase_35 AC 41 ms
53,628 KB
testcase_36 AC 42 ms
53,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

N, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))
hq = []
for a in A:
    heappush(hq, -a)


def do(hq, c, num):
    while hq and num > 0:
        a = -heappop(hq)
        n = a // c
        if n == 0:
            if num:
                num -= 1
                a -= c
        elif n <= num:
            a %= c
            num -= n
        else:
            a -= num * c
            num = 0
        if a >= 0:
            heappush(hq, -a)
        
        if num == 0:
            break
    
    return hq

hq = do(hq, 10000, Z)
hq = do(hq, 5000, Y)
hq = do(hq, 1000, X)
if hq:
    print('No')
else:
    print('Yes')

0