結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 44 ms
51,712 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 43 ms
51,712 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 124 ms
92,800 KB
testcase_11 AC 124 ms
92,800 KB
testcase_12 AC 119 ms
91,392 KB
testcase_13 AC 124 ms
92,672 KB
testcase_14 AC 126 ms
93,056 KB
testcase_15 AC 121 ms
93,312 KB
testcase_16 AC 124 ms
93,056 KB
testcase_17 AC 127 ms
92,928 KB
testcase_18 AC 126 ms
92,800 KB
testcase_19 AC 124 ms
93,056 KB
testcase_20 AC 119 ms
92,544 KB
testcase_21 AC 119 ms
92,416 KB
testcase_22 AC 121 ms
92,160 KB
testcase_23 AC 118 ms
92,544 KB
testcase_24 AC 120 ms
92,288 KB
testcase_25 AC 120 ms
92,672 KB
testcase_26 AC 121 ms
92,288 KB
testcase_27 AC 119 ms
92,416 KB
testcase_28 AC 118 ms
92,544 KB
testcase_29 AC 121 ms
92,800 KB
testcase_30 AC 43 ms
52,352 KB
testcase_31 AC 78 ms
82,944 KB
testcase_32 AC 77 ms
82,944 KB
testcase_33 AC 93 ms
91,776 KB
testcase_34 AC 41 ms
52,224 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 41 ms
51,968 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