結果

問題 No.1015 おつりは要らないです
コンテスト
ユーザー rei60
提出日時 2020-04-04 10:10:50
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 712 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 335 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 25,228 KB
最終ジャッジ日時 2026-03-24 14:25:15
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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