結果

問題 No.1015 おつりは要らないです
ユーザー maspymaspy
提出日時 2020-03-11 08:44:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,564 KB
最終ジャッジ日時 2024-11-17 23:05:13
合計ジャッジ時間 7,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3.8
import sys
read = sys.stdin.read
readline = sys.stdin.readline
readlines = sys.stdin.readlines


def solve(A, X, Y, Z):
    A = [x + 1 for x in A]
    N = len(A)
    for (cost, num) in [(10000, Z), (5000, Y), (1000, X)]:
        A.sort(reverse=True)
        for i in range(N):
            x = A[i] // cost
            use = min(x, num)
            A[i] -= use * cost
            num -= use
        A.sort(reverse=True)
        for i in range(min(N, num)):
            A[i] = 0
    return sum(A) == 0


if __name__ == '__main__':
    N, X, Y, Z, *A = map(int, read().split())
    print('Yes' if solve(A, X, Y, Z) else 'No')
0