結果

問題 No.1015 おつりは要らないです
ユーザー uni_pythonuni_python
提出日時 2020-04-04 00:22:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 93,200 KB
最終ジャッジ日時 2024-11-17 23:19:25
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,528 KB
testcase_01 AC 34 ms
53,072 KB
testcase_02 AC 33 ms
54,232 KB
testcase_03 AC 33 ms
53,576 KB
testcase_04 AC 32 ms
52,600 KB
testcase_05 AC 31 ms
52,960 KB
testcase_06 AC 30 ms
53,132 KB
testcase_07 AC 31 ms
52,664 KB
testcase_08 AC 31 ms
52,252 KB
testcase_09 AC 31 ms
52,136 KB
testcase_10 AC 92 ms
92,948 KB
testcase_11 AC 95 ms
92,812 KB
testcase_12 AC 90 ms
91,148 KB
testcase_13 AC 94 ms
92,732 KB
testcase_14 AC 97 ms
92,856 KB
testcase_15 AC 93 ms
92,960 KB
testcase_16 AC 95 ms
92,772 KB
testcase_17 AC 96 ms
92,776 KB
testcase_18 AC 103 ms
93,048 KB
testcase_19 AC 96 ms
93,200 KB
testcase_20 AC 93 ms
92,512 KB
testcase_21 AC 92 ms
92,628 KB
testcase_22 AC 91 ms
92,332 KB
testcase_23 AC 94 ms
92,228 KB
testcase_24 AC 99 ms
92,328 KB
testcase_25 AC 93 ms
92,840 KB
testcase_26 AC 101 ms
92,384 KB
testcase_27 AC 90 ms
92,348 KB
testcase_28 AC 92 ms
92,628 KB
testcase_29 AC 92 ms
92,920 KB
testcase_30 AC 32 ms
53,292 KB
testcase_31 AC 58 ms
83,984 KB
testcase_32 AC 57 ms
83,576 KB
testcase_33 AC 71 ms
91,672 KB
testcase_34 AC 33 ms
52,552 KB
testcase_35 AC 32 ms
52,064 KB
testcase_36 AC 32 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N,X,Y,Z=MI()
    A=LI()
    L=[0]*N
    XX=0
    YY=0
    ZZ=0
    
    for i in range(N):
        L[i]=(A[i]+1000)//1000
        XX+=L[i]
    
    L.sort(reverse=True)
    
    for i in range(N):
        if L[i]>=10 and ZZ<Z:
            ch=min(L[i]//10,Z-ZZ)
            L[i]-=ch*10
            XX-=ch*10
            ZZ+=ch
            
    L.sort(reverse=True)
    
    for i in range(N):
        if ZZ<Z and L[i]<=10:
            XX-=(L[i])
            L[i]=0
            ZZ+=1
            
    L.sort(reverse=True)
    
    for i in range(N):
        if L[i]>=5 and YY<Y:
            ch=min(L[i]//5,Y-YY)
            L[i]-=ch*5
            XX-=ch*5
            YY+=ch
            
    L.sort(reverse=True)
    
    for i in range(N):
        if YY<Y and L[i]<=5:
            XX-=(L[i])
            L[i]=0
            YY+=1
        
        
             
    
    if XX<=X and YY<=Y and ZZ<=Z:
        print("Yes")
    else:
        print("No")
        
    


main()
0