結果

問題 No.1015 おつりは要らないです
ユーザー rei60
提出日時 2020-04-04 10:10:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,900 KB
最終ジャッジ日時 2024-07-03 07:01:22
合計ジャッジ時間 5,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int,input().split())
A = list(map(int,input().split())) 
B = []
C = []
for i in A:   
    if i >= 10000:
        temp = i//10000
        if Z >= temp:
            B.append(i - temp*10000)
            Z -= temp
        else:
            B.append(i)
    else:
        B.append(i)
B.sort(reverse = True)

if Z >= 0:
        B = B[Z:]

for i in B:   
    if i >= 5000:
        temp = i//5000
        if Y >= temp:
            C.append(i - temp*5000)
            Y -= temp
        else:
            C.append(i)
    else:
        C.append(i)
C.sort(reverse = True)

if Y >= 0:
        C = C[Y:]

for i in C:
    X -= i//1000 + 1

if X >= 0 and Y >= 0 and Z >= 0:
    print("Yes")
else:
    print("No")
0