結果

問題 No.1015 おつりは要らないです
ユーザー w0mbatw0mbat
提出日時 2020-11-03 22:00:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 92,156 KB
最終ジャッジ日時 2024-07-22 09:13:03
合計ジャッジ時間 7,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,128 KB
testcase_01 AC 40 ms
52,600 KB
testcase_02 AC 40 ms
53,144 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 41 ms
53,008 KB
testcase_05 AC 40 ms
52,808 KB
testcase_06 AC 39 ms
52,952 KB
testcase_07 AC 39 ms
52,968 KB
testcase_08 AC 40 ms
54,672 KB
testcase_09 AC 40 ms
53,884 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 239 ms
91,720 KB
testcase_16 AC 237 ms
91,824 KB
testcase_17 AC 246 ms
91,652 KB
testcase_18 AC 238 ms
91,928 KB
testcase_19 AC 240 ms
92,132 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 40 ms
52,752 KB
testcase_31 AC 105 ms
90,428 KB
testcase_32 AC 106 ms
90,244 KB
testcase_33 AC 105 ms
92,040 KB
testcase_34 AC 40 ms
54,244 KB
testcase_35 WA -
testcase_36 AC 39 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush, heappop
import sys
def main():
    input = sys.stdin.readline
    N, X, Y, Z = map(int, input().split())
    *A, = map(lambda x: -int(x), input().split())
    heapify(A)
    cnt = [Z, Y, X]
    for c, n in enumerate([10000, 5000, 1000]):
        while A and cnt[c] > 0:
            p = -heappop(A)
            d = (p + 1) // n
            if d == 0:
                cnt[c] -= 1
                continue
            d = min(d, cnt[c])
            heappush(A, n * d - p)
            cnt[c] -= d
    print('No' if A else 'Yes')

if __name__ == '__main__':
    main()
0